Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/05/2016, 11:47
thelighter
 
Fecha de Ingreso: agosto-2011
Mensajes: 36
Antigüedad: 13 años, 3 meses
Puntos: 0
Respuesta: script automatico editar

buenas este es el codigo que muestra todo los cliente con fecha de caducidad

Código PHP:
Ver original
  1. <?php require_once('../../Connections/agregarequipos.php'); ?>
  2. <?php
  3. if (!function_exists("GetSQLValueString")) {
  4. function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  5. {
  6.   if (PHP_VERSION < 6) {
  7.     $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  8.   }
  9.  
  10.   $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  11.  
  12.   switch ($theType) {
  13.     case "text":
  14.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  15.       break;    
  16.     case "long":
  17.     case "int":
  18.       $theValue = ($theValue != "") ? intval($theValue) : "NULL";
  19.       break;
  20.     case "double":
  21.       $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
  22.       break;
  23.     case "date":
  24.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  25.       break;
  26.     case "defined":
  27.       $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
  28.       break;
  29.   }
  30.   return $theValue;
  31. }
  32. }
  33.  
  34. $maxRows_Recordset1 = 1000;
  35. $pageNum_Recordset1 = 0;
  36. if (isset($_GET['pageNum_Recordset1'])) {
  37.   $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
  38. }
  39. $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
  40.  
  41. mysql_select_db($database_agregarequipos, $agregarequipos);
  42. $query_Recordset1 = "SELECT * FROM clientes WHERE TIMESTAMPDIFF(DAY, fecha_final , CURDATE()) > 1";
  43. $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
  44. $Recordset1 = mysql_query($query_limit_Recordset1, $agregarequipos) or die(mysql_error());
  45. $row_Recordset1 = mysql_fetch_assoc($Recordset1);
  46.  
  47. if (isset($_GET['totalRows_Recordset1'])) {
  48.   $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
  49. } else {
  50.   $all_Recordset1 = mysql_query($query_Recordset1);
  51.   $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
  52. }
  53. $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
  54. ?>
  55.  
  56. <table class="table table-striped table-bordered table-hover" >
  57.         <thead>
  58.   <tr bgcolor="#999999">
  59.     <td>Id</td>
  60.     <td>NOMBRE</td>
  61.     <td>CELL</td>
  62.     <td>IP</td>
  63.     <td>CODIGO</td>
  64.     <td>FECHA FINAL</td>
  65.    
  66.   </tr>
  67.   <?php do { ?>
  68.     <tr>
  69.       <td><a href="http://www.forosdelweb.com/f18/contenido/buscar_cl.php?id=<?php echo $row_Recordset1['id']; ?>"> <?php echo $row_Recordset1['id']; ?>&nbsp; </a></td>
  70.      
  71.       <td><?php echo $row_Recordset1['nombres']; ?>
  72.       <?php echo $row_Recordset1['apellido']; ?>&nbsp; </td>
  73.      
  74.      
  75.       <td><?php echo $row_Recordset1['cell']; ?>&nbsp; </td>
  76.      
  77.       <td><?php echo $row_Recordset1['ip']; ?>&nbsp; </td>
  78.      
  79.       <td><?php echo $row_Recordset1['codigo']; ?>&nbsp; </td>
  80.       <td><?php echo $row_Recordset1['fecha_final']; ?>&nbsp; </td>
  81.      
  82.     </tr>
  83.     <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
  84.  </tbody>
  85. </table> <br />
  86. <table width="150" border="0">
  87.   <tr>
  88.  
  89.  
  90.  
  91. </table>
  92.  
  93. </body>
  94. </html>
  95. <?php
  96. mysql_free_result($Recordset1);
  97. ?>             </div>