there are easier ways to backup/restore database than with phpMyAdmin
for example from root:
Backup database
Code:
mysqldump db_name -r file_name.sql
Import database
Code:
mysql -uUSER -pPASS DB_NAME < FILE.SQL
this is much faster and easier way to backup and specially to restore a database