PHP Backup Database Code This is a PHP MySQL database backup and restore backup code, you can easily to the database of your site to backup, but also can restore Oh, This program generates. SQL database files, you can also use other tools to import, convenient, generated are SQL database backup statements, so compatibility is good.
PHP Tutorial Backup Database Tutorial Code
This is a PHP MySQL tutorial database backup and restore the code of backup, you can casually to the database of your site to backup, but also can restore Oh, This program generates. SQL database files, you can also use other tools to import, convenient, generated are SQL database backup statements, so compatibility is good.
*/
?>
inport.php
/**
* Database Backup Program
*
* @author: Huang
* @version: 1.0
* @lastupdate: 2010-7-19
*
*/
Include ("config/config.php");
Include ("includes/dbbackup.class.php");
Include ("includes/msg.class.php");
$dbbackup = new Dbbackup ($dbhost, $dbuser, $dbpwd, $dbname);
$msg = new Msg ();
$bakfile = $dbbackup->get_backup (); Get Backup files
if ($_get[' fn ']) {
if ($dbbackup->import ($_get[' fn ')) {//Import data
$STR = "Congratulations on your
Backup data has been imported successfully! "; Prompt information
$msg->show_msg ($str, ' import.php ', ' export.php '); Prompt for import success
}
}
Delete a backup file
if ($_post[' Sub ']) {
echo $dbbackup->del ($_post[' Choice ')? $msg->show_msg ("Congratulations to you
Backup file deleted successfully! ", ' import.php ', ' export.php '): $msg->show_msg (" Delete failed! ", ' import.php ', ' import.php ');
}
?>
1 2 3 4 5 6 7 8 9 10
http://www.bkjia.com/PHPjc/630827.html www.bkjia.com true http://www.bkjia.com/PHPjc/630827.html techarticle PHP Backup Database code This is a PHP MySQL database backup and restore backup code, you can casually to your site database backup, but also can restore Oh, this program ...