Jump to content

restoring database php


arukiri

Recommended Posts

i can't seem to restore my database backup in php. this is my code

 

<?php

$host = 'localhost';

$user = 'root';

$pass = ' ';

$dbname = 'itravel';

$backup_name = 'itravel_backup.sql';

if(isset($_POST['backup']))

{

$backup = "c:/xampp/mysql/bin/mysqldump --opt -h $host -u $user $dbname > $backup_name";

system($backup);

}

 

if(isset($_POST['restore']))

{

$restore = 'c:/xampp/mysql/bin/mysql -u $user --p $pass $dbname < $backup_name';

system($restore);

}

?>

 

backup was successful but the restore was a failure. help me guys!

Link to comment
https://forums.phpfreaks.com/topic/274297-restoring-database-php/
Share on other sites

Run the restore command manually, and it should tell you why.

 

Also, if you haven't done so already: Turn on error reporting. Without error messages no-one can do anything about your problem, as no-one really knows what the problem actually is.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.