Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/11/2011, 11:40
castrovega7
 
Fecha de Ingreso: junio-2011
Mensajes: 51
Antigüedad: 13 años, 5 meses
Puntos: 3
Respuesta: como hacer correlativo de numeros en array

Opsss no se que he hecho con mi anterior comentario...

Si claro, prueba así

Código PHP:
Ver original
  1. <?php
  2. include("Conexion.php"); //conexion
  3. $sql = mysql_query("SELECT * FROM mgtrading") or die ("Error en el query: ".mysql_error());
  4. //$cad ="";
  5. $i=0;
  6. while($i < $rs->count()){
  7.  
  8. foreach($rs as $r){
  9.  
  10. $PROVEEDOR= $r['PROVEEDOR'];
  11. $total = $r['TOTAL'];
  12. $fecha = $r['FECHA'];
  13. $BASEIMP_CON_DERCF = $r['BASEIMP_CON_DERCF'];
  14. $IGV_CON_DERCF = $r['IGV_CON_DERCF'];
  15. $i++;
  16.  
  17.  
  18. $tabla[] = $PROVEEDOR . "\t";
  19. $tabla[] = $total . "\t"; //DIMPORT
  20. $tabla[] = $i . "\t"; //DIMPORT
  21. $tabla[] = $fecha . "\t"; //DDATE
  22. $tabla[] = "\r\n";
  23.  
  24. $tabla[] = $PROVEEDOR . "\t";
  25. $tabla[] = $BASEIMP_CON_DERCF . "\t"; //DIMPORT
  26. $tabla[] = $i . "\t"; //DIMPORT
  27. $tabla[] = $fecha . "\t"; //DDATE
  28. $tabla[] = "\r\n";
  29.  
  30. $tabla[] = $PROVEEDOR . "\t";
  31. $tabla[] = $IGV_CON_DERCF . "\t"; //DIMPORT
  32. $tabla[] = $i . "\t"; //DIMPORT
  33. $tabla[] = $fecha . "\t"; //DDATE
  34. $tabla[] = "\r\n";
  35.  
  36.  
  37.  
  38. }
  39.  
  40. }
  41. $tabla = join('', $tabla);
  42. file_put_contents('prueba.txt', $tabla);
  43. ?>


A lo mejor, me estoy liando, pero creo que podría valer.


Un saludo.

Última edición por castrovega7; 25/11/2011 a las 11:44 Razón: El $i++; ahora está en su sitio