@mysql_query VS mysql_query

I’ve seen both @mysql_query and mysql_query. What does the @ symbol mean in some of the code I’ve seen?

Suppress error messages.

@ suppress errors

http://us2.php.net/operators.errorcontrol

Ah, thanks!