
December 17th, 1999, 07:08 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
You are passing a link index that doesn't exist. The link index is obtained when a mysql_connect() or mysql_pconnect() is called. e.g.:
$linkid=mysql_connect('host','user','password');
Some mysql functions allow you to include the link index as an argument, although usually it is not required as PHP will use the currently open connection.
HTH
|