-1

Possible Duplicate:
PHP download backup of MySQL database

I want a one click database backup. backup can be saved as .sql or .zip or .txt file in a folder which I define.

Community
  • 1
  • 1
Imrul.H
  • 5,610
  • 14
  • 52
  • 84

2 Answers2

0

I did the same thing in my C# app and started a console call of mysqldump like this:

mysqldump -u username --password=yourpass db_name > outputfile.sql
juergen d
  • 195,137
  • 36
  • 275
  • 343
-2

You can backup database or tables using phpMyAdmin

Sharad D
  • 319
  • 1
  • 11