[snip]
Are there any query equivalencies to mysqldump? I am looking for a way
to get a complete database dump via php and I don't have access to the
system CLI to run mysql dump.
[/snip]

Run mysqldupmp in a php file using exec...see

http://www.php.net/exec
http://www.mysql.com/mysqldump

looks like

$foo = exec("mysqldump database [options]");

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to