I successfully take backups of my database with this php code:
$command = "mysqldump --opt -h$dbhost -u$dbuser -p$dbpass $dbname |
gzip $backupfile.gz";
$dummy = system($command, $retval);
But I can not find the code for restoring a backup file. How is it
done?
Kind regards,
Jan Nordgreen