ViArt - PHP Shopping Cart
Select your currency:
American DollarBritish Pound
How to make a backup of my database?
You can make a backup for MySQL db using mysqldump program distributed with MySQL.
E.g.:

mysqldump --opt -u User -p Database > VA_Shop_Dump.sql

It should create file VA_Shop_Dump.sql that will contain the dump of database.
Read more about dumping MySQL database at www.mysql.org.

ViArt - PHP Shopping Cart