I’ve seen both @mysql_query and mysql_query. What does the @ symbol mean in some of the code I’ve seen?
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
Ah, thanks!