[PHP] Backup of a MySQL database.

2004-03-22 Thread Elliot J. Balanza
Can anyone post a link to a good reference material on how to do this... evidentely mysqldump is not working here... and i need to do this via php programming. thanks vamp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Backup of a MySQL database.

2004-03-22 Thread Filip de Waard
On Mar 22, 2004, at 11:34 PM, Elliot J. Balanza wrote: Can anyone post a link to a good reference material on how to do this... evidentely mysqldump is not working here... and i need to do this via php programming. I'm sure you will find prewritten scripts with Google and I know phpmyadmin

Re: [PHP] Backup of a MySQL database.

2004-03-22 Thread Elliot J. Balanza
I was looking something more like a MySQL dump class or function... I think since i can't do any phpmyadmin or anything like that, that i will simply write my own code... yuk i was hoping to save 1-2 days work... thanks vamp Filip De Waard [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL

RE: [PHP] Backup of a MySQL database.

2004-03-22 Thread Chris W. Parker
Elliot J. Balanza mailto:[EMAIL PROTECTED] on Monday, March 22, 2004 3:05 PM said: I was looking something more like a MySQL dump class or function... this may not be as robust a solution as you require but can you not simply backtick the mysqldump command from within php? ?php $date =

Re: [PHP] Backup of a MySQL database.

2004-03-22 Thread Filip de Waard
On Mar 23, 2004, at 1:10 AM, Chris W. Parker wrote: Elliot J. Balanza mailto:[EMAIL PROTECTED] on Monday, March 22, 2004 3:05 PM said: I was looking something more like a MySQL dump class or function... this may not be as robust a solution as you require but can you not simply backtick the