-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,760
  • 14
  • 55
  • 88

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
  • 201,996
  • 37
  • 293
  • 362
-2

You can backup database or tables using phpMyAdmin

Sharad D
  • 329
  • 1
  • 11