Re: [PHP] MySQL Database backup

2001-08-27 Thread Alex Sofronie
"PHP General" <[EMAIL PROTECTED]>; "Augusto Cesar Castoldi" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 7:40 PM Subject: Re: [PHP] MySQL Database backup > > This script uses the MyPHPAdmin > > (http://phpwizard.net/projects/phpMyAdmin/) dump, he >

Re: [PHP] MySQL Database backup

2001-08-27 Thread Alex Sofronie
Thanks a lot. - Original Message - From: "Augusto Cesar Castoldi" <[EMAIL PROTECTED]> To: "Alex Sofronie" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 6:22 PM Subject: Re: [PHP] MySQL Database backup > Alex, > > i'm using the cronta

Re: [PHP] MySQL Database backup

2001-08-26 Thread Chris Lambert
The easiest way would be to call mysqldump from PHP (system, exec, backticks, whatever) and pipe it to a file, all from the command line. This would backup the core data in the form of valid MySQL statements. If you have several indexes, this method will actually produce smaller files as well. /*