Skip to: site menu | section menu | main content
Log into the Control Panel, where it will be displayed. The usermame and password will be the same as your Control Panel/phpMyAdmin login.
First find your login info as above, then use the command below.
mysql -h hostname -u user -ppassword
Then change to the correct database
\u databasename
First find your login info as above, then use the command below.
mysql_connect("hostname","user","password");
Then change to the correct database
mysql_select_db("databasename");
Take a look at these tutorials. If you want to learn how to interact with mySQL using PHP take a look here