I don’t want to display errors in a screen, except that I want to save it in DB.
I can’t find any information about it. I think that it isn’t difficult task, I just can’t imagine how to orginize that…
Thank you a lot!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
set_error_handler('myErrorFunction');(See PHP Manual set_error_handler) definemyErrorFunctionwith database inserts, turn off standard error reporting display withini_get('display_errors', 0);