what is the difference between?
$link = mysql_connect("host","user","pass");
and
$link = @mysql_connect("host","user","pass");
Thanks
The first will report an error, the second represses an error if there is one.
amc