當前位置: 首頁>>代碼示例>>PHP>>正文


PHP funciones::redireccionar方法代碼示例

本文整理匯總了PHP中funciones::redireccionar方法的典型用法代碼示例。如果您正苦於以下問題:PHP funciones::redireccionar方法的具體用法?PHP funciones::redireccionar怎麽用?PHP funciones::redireccionar使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在funciones的用法示例。


在下文中一共展示了funciones::redireccionar方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

									
								break;
								
								case "grabarchats":
									
									$idAgent=$_POST["idagent"];$idAdmin=$_POST["idAdmin"];$fecha=$_POST["fecha"];$shift=$_POST["shift"];
									$customerName=$_POST["customer"];$emailAddress=$_POST["email"];$waitTime=$_POST["wait"];$comments=$_POST["comment"];
									$idTeam=$_POST["idteam"];$duration=$_POST["duration"];
									
									$sql="
									INSERT INTO qa_chats(id,idAgent,idAdmin,fecha,shift,customerName,emailAddress,waitTime,comments,idTeam,duration) 
									VALUES (Null,'$idAgent','$idAdmin','$fecha','$shift','$customerName','$emailAddress','$waitTime','$comments','$idTeam','$duration') 
									";
									
									if($f->grabardatos($sql)){
										$f->redireccionar("","_qa.php?tipo=$tipo&usuario=$usuario&transaccion=chats");
									}
								
								break;
								
								case "mails":
									$plantilla=$f->leer_plantilla("qamails.html");
									$idadmin=$f->id_usuario($usuario);
									$optionsteam=$f->qaconsultas("SELECT id_team AS id, team AS nombre FROM teams","options");
									$optionsagent=$f->qaconsultas("SELECT id_usuario AS id, nombre AS nombre FROM usuario WHERE estado='1' AND id_tipo_usuario='3'","options");
									$plantilla=str_replace("{url}","_qa.php?tipo=$tipo&usuario=$usuario&transaccion=grabarmails",$plantilla);
									$plantilla=str_replace("{fecha}",$f->fechadehoy(),$plantilla);
									$plantilla=str_replace("{optionsteam}",$optionsteam,$plantilla);
									$plantilla=str_replace("{optionsagent}",$optionsagent,$plantilla);
									$plantilla=str_replace("{idadmin}",$idadmin,$plantilla);
									$plantilla=str_replace("{tipo}",$tipo,$plantilla);
開發者ID:rommelxcastro,項目名稱:CRI-Online-Sales---Admin,代碼行數:30,代碼來源:_qa.php

示例2:

										$tpl->reemplazar("{fullname}",$sql->uncampo("SELECT fullname FROM auth_refunds WHERE id='".$ids[$x]."'"));
										$tpl->reemplazar("{email}",$sql->uncampo("SELECT email FROM auth_refunds WHERE id='".$ids[$x]."'"));
										$tpl->reemplazar("{amount}",$sql->uncampo("SELECT amount FROM auth_refunds WHERE id='".$ids[$x]."'"));
										$tpl->reemplazar("{comment}",$sql->uncampo("SELECT comment FROM auth_refunds WHERE id='".$ids[$x]."'"));
										$tpl->reemplazar("{id}",$ids[$x]);
										$tpl->reemplazar("{url_aprobar}","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario&transaccion=apr");
										$tpl->reemplazar("{url_rechazar}","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario&transaccion=rech");
			
										$tpl->mostrarplantilla();
										echo "</td></tr>";
									}
									break;
									
								case "apr":
									if($sql->consulta("UPDATE auth_refunds SET status='1' WHERE id='".$_POST["idref"]."'")){
										$f->redireccionar("Refund aprobado","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario");
									}
									break;
									
								case "rech":
									if($sql->consulta("UPDATE auth_refunds SET status='3' WHERE id='".$_POST["idref"]."'")){
										$f->redireccionar("NO autorizado","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario");
									}
									break;
							
								case "VerAutorizados":
									$ids=$sql->ids_tabla("SELECT id FROM auth_refunds WHERE status='1'");
									for($x=0;$x < count($ids);$x++){
										echo "<tr><td>";
										
										$plantilla=$tpl->leer_plantilla("html/TPLVer.html");
開發者ID:rommelxcastro,項目名稱:CRI-Online-Sales---Admin,代碼行數:31,代碼來源:AuthRefAdmin.php


注:本文中的funciones::redireccionar方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。