I want to hide all mysql error messages without using mysql_error(). Are there any solutions?
mysql_error()
Put @ in front of your mysql_query call (@mysql_query('some query');) to suppress the error messages.
@
mysql_query
@mysql_query('some query');