PHP
Do you run PHP in Safe Mode?
Yes, all our servers run PHP in Safe Mode.Were can I find information on PHP?
A good link for getting help is: http://www.php.net/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.

