| | |
mysqldump
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
Hi
Does anyone know what is the simplest way to backup a database using the mysqldump function in php?
I have googled a lot and the codes i have found are very hard to understand and most of them does not work.
Thanx in advance for your help.
Does anyone know what is the simplest way to backup a database using the mysqldump function in php?
I have googled a lot and the codes i have found are very hard to understand and most of them does not work.
Thanx in advance for your help.
If you are allowed to use exec() then that will make it a one line script. Otherwise you can't access mysqldump directly through PHP.
John Conde
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
John Conde
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
Backup :
Restore :
- Mitko Kostov
php Syntax (Toggle Plain Text)
$command = "mysqldump -u [username] -p [password] [databasename] > [backupfile.sql]";
Restore :
php Syntax (Toggle Plain Text)
$command = "mysqldump -u [username] -p [password] [databasename] < [backupfile.sql]";
php Syntax (Toggle Plain Text)
system($commmand);
- Mitko Kostov
![]() |
Similar Threads
- mysqldump from asp (ASP)
- need help w/ CRON job for backups (*nix Software)
- Backing up a MySQL database (MySQL)
- MySQL for this forum ... (MySQL)
Other Threads in the PHP Forum
- Previous Thread: Retrieve URL from address bar
- Next Thread: image verification
| Thread Tools | Search this Thread |
apache api array basic beginner binary broken cache cakephp checkbox class cms code computing confirm cron curl customizableitems database date delete display dynamic echo email error external file files filter folder form forms forum function functions gc_maxlifetime google headmethod host howtowriteathesis href htaccess html iframe image include insert ip javascript joomla limit link login mail malfunction memmory memory menu mlm multiple mysql navigation oop parsing paypal pdf php phpmysql problem query question radio random recursion remote script search select server sessions sms snippet source space sql syntax system table thesishelp trouble tutorial update upload url validator variable video web youtube






