What is the PHP connection string to my MySQL database?
$db=mysql_connect("yourdomain.com.mysql", "username", "password"); mysql_select_db("database", $db);
Replace yourdomain.com with your domain name. Username, password and database with the username, password and database name given in your code letter.

