Código PHP:
//se abre el fichero
$fp = fopen("$fecha.xml","a");
fwrite($fp, '<?xml version="1.0"?>' . PHP_EOL);
fwrite($fp, "<piedra>" . PHP_EOL);
foreach ($result as $valor) {
$id=$valor[id];
$nombre=$valor[nombre];
$apellidos=$valor[apellidos];
fwrite($fp, "\t <usuario>" . PHP_EOL);
fwrite($fp, "\t\t <id>$id</id>" . PHP_EOL);
fwrite($fp, "\t\t <nombre>$nombre</nombre>" . PHP_EOL);
fwrite($fp, "\t\t <apellidos>$apellidos</apellidos>" . PHP_EOL);
fwrite($fp, "\t </usuario>" . PHP_EOL);
}
fwrite($fp, "</piedra>" . PHP_EOL);
fclose($fp);
hola
' . PHP_EOL); fwrite($fp, "" . PHP_EOL); foreach ($result as $valor) { $id=$valor[id]; $nombre=$valor[nombre]; $apellidos=$valor[apellidos]; fwrite($fp, "\t " . PHP_EOL); fwrite($fp, "\t\t $id" . PHP_EOL); fwrite($fp, "\t\t $nombre" . PHP_EOL); fwrite($fp, "\t\t $apellidos" . PHP_EOL); fwrite($fp, "\t " . PHP_EOL); } fwrite($fp, "" . PHP_EOL); fclose($fp); echo "OK"; echo "
El nombre del fichero es: ".$fecha.".xml";?>Descargar
Otra cosa que puede resultar interesante... es que al establecer el nombre del fichero establecía la hora actual... al igual que antes, en local funcionaba perfectamente pero al ejecutar la pagina simplemente con el codigo este
Código PHP:
echo=date('d-m-Y_H-i');