I did a google search for tranfering databases in phpMyAdmin and this is all i got:
Can anyone elaborate on this? Some newbie friendly instructions would be much apriciated.Transfering databases via
browser might not be the best idea, anyway.
On origin server:
mysqldump dbname > dbname.sql
On target server:
ftp dbname.sql to a local directory on the target;
mysqladmin create dbname
cat dbname.sql | mysql dbname