我使用此代码在服务器端下载 MySQL 数据库它工作正常,但我不知道如何在客户端下载数据库,请帮助。
include'connect.php';
if(isset($_POST['download'])){
$time = time();
$current_date_time = date('d-m-Y@H-i-s', strtotime('+3 hours'));
$backupFile = 'D://xampp//htdocs//development//ShahrajeTraders//backup//'.$database.'~'.$current_date_time.'.sql';
$command = "D://xampp//mysql//bin//mysqldump.exe -h $host_name -u $user_name -p$user_pass $database > $backupFile";
system($command);
if($command){
echo'
<script>
$(document).ready(function(){
alert("Download Completed.");
});
</script>
';
}else{
echo'
<script>
$(document).ready(function(){
alert("Error During Downloading.");
});
</script>
';
}
}