|
December 28th, 2007
Check this page:
http://us3.php.net/function.mysql-connect
This is what my hosting provider gives me as instructions on connecting:
$db = mysql_connect ("localhost", "username", "******");
mysql_select_db ("dbname", $db);
Looks like you're missing some info as to which db to connect to in which connection.
|