I was looking about at a few php sites, on some of the mysql functions an '@' sign is at the begining of the function but on others its not?
PHP Code:
$rs=@mysql_query($sql$conn);//result resource 
PHP Code:
$result mysql_query('SELECT my_col FROM my_tbl'); 
Whats the differnece with placing the '@' there or not?

Thanks