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
Whats the differnece with placing the '@' there or not?PHP Code:$result = mysql_query('SELECT my_col FROM my_tbl');
Thanks




Reply With Quote