I’m developing a web-application using PHP which is on tests by some of my friends. What approach do you recommend me to use in order to know what warnings are they getting but without displaying them using ini_set('display_errors', 1);?
Also, the application will run in a intranet in which I’ll not have access remotely.
I was thinking to send daily emails with some information to me, but i don’t know which are important facts to be saved. Do you have a article/sample for me? Do you have a better advice for me?
For example you can do something like:
You can also edit PHP.ini or do it with an .htaccess (if on Apache).
You can use PHP mail() but a library like PHPMailer will speed things up (and will be easier to use).