Well 1 question to then ask your host is, are you setup to connect to the mysql database
Once you have been granted permission
<?php
$link = mysql_connect("localhost", "username", "secret")
or die("Could not connect");
print ("Connected successfully");
mysql_close($link);
?>