Hello Guys,
I'm troubling with one problem, actually I want to create a backup of
MYSQL database. So, could you tell me how to perform this task.
Please resolve my problem as soon as possible.
How to create mysql database backup file using PHP?
Ask by Pravesh Singh
Updated 12 Mar 2012
It is not big issue, to resolve this problem you can use following query...
Query: "SELECT * INTO OUTFILE '$backupFile' FROM $tableName";
Where,
$backupFile -> is backup file name with path.
$tableName -> is that table for which you create backup.
I hope it might be helpful for you.