Backup Restore MySQL Database through PHP

A

Anonymous

Guest
Hi all,

this is a big one... :)

is there any facility in PHP Code for backup and restore MySQL database?

i have the code for import-export but all constrains are not covered in that... For example it gives me DROP, CREATE,INSERT Only... not Stored Procedures, Foreign Key constrains, etc. :(

Please give me solution if anyone has...

Thanks and Regards
Dhaval Trivedi
 
hi,

show create table `table_name` to get table defination.
 
Back
Top