I've just had a hard time finding a bug in my PHP code described below
<?php
if(condition...)
{
do something...
}
<?php
...more php
Notice that I incorrectly opened a php block again when it was not needed(before the ...more php)
The problem is that PHP is not reporting this error, it's just giving me a blank page. I've set error reporting to E_ALL and ini_set display errors '1'. I was wondering if there is a way to make php report this kind of error.