Backup a mysql database and download as a file

后端 未结 6 1171
星月不相逢
星月不相逢 2020-12-03 12:07

How to backup the mysql database and download it as a .sql file by using PHP Codes

6条回答
  •  情话喂你
    2020-12-03 12:36

    Use phpmyadmin

    Edit:

    You can use shell_exec to execute this command

    mysqldump -u username -p password database > file

    This will generate a dump file,and then redirect user to this generated file.

提交回复
热议问题