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


PHP funciones::escribir_archivo方法代碼示例

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


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

示例1: puntos

		if(isset($cantidad) && $cantidad!=0 && $cantidad!=" "){
		// graba los datos y retorna el valor del ultimo id introducido en la tabla
		$idpunts=$ff->grabardatos("INSERT INTO puntos(id_puntos,cantidad,fecha,razon,id_usuario,id_accion) 
		VALUES (Null,'$cantidad','$fecha','$razon','$idAgent','$accion')");		
		}
		else{$idpunts=0;}

		$sql=" 
		INSERT INTO qa_calls 
		(id,idAgent,idAdmin,fecha,shift,customerName,polite,performance,english,calledSupervisor,comments,idTeam,id_puntos) 
		VALUES (Null,'$idAgent','$idAdmin','$fecha','$shift','$customerName','$polite','$performance','$english','$calledSupervisor','$comments','$idTeam','$idpunts') 
		";
		
		//$ff->grabardatos($sql);
		
		if($ff->grabardatos($sql)){$ff->escribir_archivo("qa/calls/".$idAgent.".txt","w",$idAgent);}
		include_once("vercalls.php");
		
		break;
	
	
	case "delete":		
		$id=$_POST["iddelete"];
		$idcalls=$ff->qaconsultas("SELECT id_puntos AS campo FROM qa_calls WHERE id='$id'","uncampo");
		$ff->grabardatos("DELETE FROM qa_calls WHERE id='$id' ");
		
		//tabla,nombre ID, valor del Id
		$ff->borrarId("puntos","id_puntos",$idcalls);
		
		include_once("vercalls.php");
		break; 
開發者ID:rommelxcastro,項目名稱:CRI-Online-Sales---Admin,代碼行數:31,代碼來源:grabar_qacalls.php

示例2:

                        <img src="../images/new/autorizados.gif" border="0" width="160" height="" style="border-right:1px dashed #aaaaaa">
                        </a>
                        
                        <a href="<?php echo "AuthRefAdmin.php?tipo=$tipo&usuario=$usuario&transaccion=VerRechazados"?>">
                        <img src="../images/new/rechazados.gif" border="0" width="160" height="">
                        </a>
                        </td></tr>
                        
                        <tr>
                        <td style="border-bottom:1px dashed #cccccc; padding:10px; padding-left:0px;color:#888888;font-size:12px;font-weight:bold">
                        <!-- Revisar by=$transaccion y en el case search-->
                        
                        <?php
						switch($transaccion){
							case "VerAutorizados":
								$f->escribir_archivo("transaccion.txt","w",$transaccion);
								break;
							case "VerRechazados":
								$f->escribir_archivo("transaccion.txt","w",$transaccion);
								break;
							case "":
								$f->escribir_archivo("transaccion.txt","w","VerAutorizados");
								break;
						}
						$by=file("transaccion.txt");
						$by=$by[0];
						
						?>
                        <form method="post" action="<?php echo "AuthRefAdmin.php?tipo=$tipo&usuario=$usuario&transaccion=search&by=$by";?>" class="sexyform">
                        	<input type="submit" value="BUSCAR"> &nbsp; &nbsp; 
                            
開發者ID:rommelxcastro,項目名稱:CRI-Online-Sales---Admin,代碼行數:30,代碼來源:AuthRefAdmin.php


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