What does the PHP connection string to my MySQL database look like?
$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.
Replace yourdomain.com with your domain name. Username, password and database with the username, password and database name given in your code letter.

