Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/02/2012, 08:29
dluxox_
 
Fecha de Ingreso: mayo-2010
Mensajes: 39
Antigüedad: 14 años
Puntos: 0
Respuesta: Exportar a .txt una un campo de mysql

gracias ya lo solucine junto a un colega de twitter @pobrezuko

saludos :)

Código PHP:
Ver original
  1. <?php
  2. $rst = mysql_query($sql);
  3.     while ($row = mysql_fetch_array($rst)) {
  4.         $shtml.=$row['nombre']."\r\n";
  5.     }
  6. ?>