The resolved my issue. referenced a variable in the mysql_connect string.
I just put in a ticket as well……..
It might have to do with the upgrade in mysql or php.
Ok! I think we are in the same boat………
Here is my code that no longer works since they migrated to the new server.
<?
$username=”*********WORKS********”;
$password=”*******WORKS*********”;
$database=”gatekeep_media”;
mysql_connect(gatekeep.accountsupportmysql.com,$username,$password);
@mysql_select_db($database) or die( “
<B>Error: IP recorded and time-stamped”);
$query=”SELECT * FROM PICS ORDER BY TITLE”;
$result=mysql_query($query);
$num=mysql_numrows($result);
?>