Created
June 5, 2017 13:17
-
-
Save micc83/fe6b5609b3a280e5516e2a3e9f633675 to your computer and use it in GitHub Desktop.
Simple PHP script to dump a MySql database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); | |
$database = 'db'; | |
$user = 'user'; | |
$pass = 'pass'; | |
$host = 'localhost'; | |
$dir = dirname(__FILE__) . '/dump.sql'; | |
echo "<h3>Backing up database to `<code>{$dir}</code>`</h3>"; | |
exec("mysqldump --user={$user} --password={$pass} --host={$host} {$database} --result-file={$dir} 2>&1", $output); | |
var_dump($output); |
better version : https://gist.github.com/pthavarasa/1ff1933a74eb97ae07aa0103ad8bea1d
Hi, first at all, GREAT SCRIPT...! now i have to questions: 1)- how can i zip the dump? 2)- How can i for the download after finish? Suggestions or ideas? Best regards.
Hi @smitione look here, you should find everything you're looking for: https://stackoverflow.com/a/4369173
thanksssss alot i had very struggle for this command and now i find it.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi guys,
first of all let me thank you for the amazing simple script.. it works great, but i needed to add some features to fit my project, such as save file from input form in php, where we select de name of the backup and post it to the execut backup script, and then download file in webrowser directly. attached below is a working example of the code.
And yeahhh keep up the good work lads.