phpmyadmin is your friend in this case.
You can also use mysql's mysqldump from the command line like this on a Windows machine:
c:\mysql\bin> mysqldump -u username -ppassword dbName > c:\windows\desktop\mydmp.txt
This will dump the structure of your db into the file mydmp.txt on your desktop.