|
As NullPointer said:
In phpMyAdmin:
Select the database you want to backup, choose the "Export" tab, define what syntax you will use for the backup (SQL) and a name for the file that contains the exported data, then hit GO.
From the command line:
mysqldump -u user -pPaSsWd dbname > outputfile
|