Voy a realizar una copia de la base de dtos y descargar el fichero generado, el código que se me ha ocurrido es este
Código PHP:
<?
system("mysqldump --host=localhost --user=root --password=260889 > nfc.sql");
$ruta = "nfc.sql";
if (is_file($ruta))
{
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename='.$ruta);
header('Content-Transfer-Encoding: binary');
header('Content-Length: '.filesize($ruta));
readfile($ruta);
}
else{
exit();
}
?>
." nfc.sql"); echo "Fin. Puede recuperar la base por FTP"; $ruta = "nfc.sql"; $fichero=$ruta; if (is_file($ruta)) { header('Content-Type: application/force-download'); header('Content-Disposition: attachment; filename='.$fichero); header('Content-Transfer-Encoding: binary'); header('Content-Length: '.filesize($ruta)); readfile($ruta); } else{ exit(); } ?>
Vamos, el código sin procesar a partir de dicho símbolo... Me podéis echar una mano? muchas gracias