MySQL/PHP connections start with:
$link = mysql_connect(<SERVER>, <USERNAME>, <PASSWORD>)
I'm thinking once you connect, you're not selecting a database to use, most common error of all....just do this
mysql_selectdb(<tablename>, $link)
Put that in the code, and use the aforementioned function...