Ok Im having trouble finding out how to select a full database for backup as an *.sql file rather than only an individual table.
On the localhost I have several databases with one named "foo" and it is that which I want to backup and not any of the individual tables inside the database "foo".
The code to connect to the database;
//Database Information
$dbhost = "localhost";
$dbname = "foo";
$dbuser = "bar";
$dbpass = "rulz";
//Connect to database
mysql_connect ($dbhost, $dbuser, $dbpass)
or die("Could not connect: ".mysql_error());
mysql_select_db($dbname) or die(mysql_error());
The code to backup the database, one question I have with this is where do I set were the *.gz file is saved?
$backupFile = $dbname . date("Y-m-d-H-i-s") . '.gz';
$command = "mysqldump --opt -h $dbhost -u $dbuser -p $dbpass $dbname | gzip
> $backupFile";
system($command);
My brain is hurting near to the end of the day so no doubts i've missed something out very obvious.
Thanks in advance to anyone helping me out.