Mysql
 sql >> Base de données >  >> RDS >> Mysql

sauvegarde mysqli db avec php

Vous n'affichez pas votre $final Les données. J'utilise ce code pour faire exactement la même chose, essayez-le...

header('Content-Description: File Transfer');
header('Content-type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $backup_filename . '.sql');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . strlen($final));
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Expires: 0');
header('Pragma: public');
echo $final;