
05/10/2006, 00:53
|
| | Fecha de Ingreso: octubre-2006
Mensajes: 23
Antigüedad: 18 años, 5 meses Puntos: 1 | |
Deberias hacer que se corra una funcion que lo escriba, eso se hace con la funcion de php fwrite este es un ejemplo
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "pepe potamo\n";
fwrite($fh, $stringData);
$stringData = "algo mas\n";
fwrite($fh, $stringData);
fclose($fh);
Es decir deberias hacer una lectura de tu tabla y luego pedir mediante la funcion que crees que te arme un txt
Suerte
Enermedia |