当前位置: 首页>>代码示例>>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;未经允许,请勿转载。