i tried this now;
$db=mysql_connect("IP:3306") or die ("fail");
$result=mysql_list_tables("contactlist") or die ("failed");
and when i ran it, the page displayed "failed".
i also tried this with a normal query such as;
$result=mysql_query("select NAME from consultants",$db) or die ("failed");
and this also displayed "failed".
could this mean that there is some kind of security issue that i'm not taking into account?
or
could this mean that i'm not connecting to the proper IP and therefore when i try to make a query, there is nothing there?