It's very important that you have a backup plan of your MySQL database. Loosing even a single day's worth of data can be frustrating and critical to your business. If you have shell (command-line) access to your database server, here is a very easy and quick backup method: Use
mysqldump.
Creating the backup
To create the dump, use this command from your shell/command-line:
mysqldump -uusername -ppassword -–default-character-set=utf8 -N database > backup.sql