Tag Archives: web development

Display All Errors and Warnings in PHP

I find myself googling this up waaaaaaay too often, but there’s nothing unusual about that. I usually put this at the top of my code during development.

[note color=”#DDD”] PHP error_reporting(E_ALL); ini_set('display_errors', '1'); 12 error_reporting(E_ALL);ini_set('display_errors', '1'); [/note]

Here’s another handy […] Continue Reading

Posted in Googling for Answers, Web Development Tagged ,