mysql_num_rows & '@'
Posted: Tue Aug 19, 2003 1:50 am
Can anyone tell me what the difference between refering to calling a function but placing a @ symbol before it and calling it normally without @ symbol?
Example #1:
Example #2:
Thanks for any help provided.
Example #1:
Code: Select all
$rowsReturned = @mysql_num_rows($result);Code: Select all
$rowsReturned = mysql_num_rows($result);