Explain how to handle MySQL statement execution errorsWhen a MySQL statement is executed using mysql_query(), a FALSE Boolean value is returned if any error occurred. To get details on the error, mysql_errno() and mysql_error() can be used to get the error number and error message.
|