Hi,

I'm trying to call mysqldump from within a php-script, like this:
$backuptime = date("ymdHi");
$backupfile = "un" . $backuptime . ".txt";
exec("mysqldump --opt -u$dbuser -p$dbpassword $dbdatabase $alltables > /web/un/backup/$backupfile");


It works fine on my local Win2k, php 4.3.1, but not on my ISP:s Sun Solaris/php 4.3.2 machine I get a parse error. What am I doing wrong?

Is there a better way to backup my database?

--
anders thoresson

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to