Hi ! How do you turn on the php debugger ? You know the one that say "you have an error on line : whatever". Do you turn it on with a piece of code or on the server ? For the most part when i do something wrong in php i get a blank page, that sucks pretty much if the only thing i left out is a \ infront of "... 😃
just throw in error_reporting(E_ALL); at the top of your script, or change the error_reporting directive in php.ini. also make sure that display_errors = On in php.ini.
So this script should give some reported errors: <?php error_reporting(E_ALL); print "<a href=\"mucho mocho"></a>"; ?>
right ? Guess the error_reporting function isn't set to ON on my free hosting server. :mad:
that would definately be a parse error, and you can't turn those off, so your display_errors is Off, or you're just not reading very well :p
Well, got it working 😃 thanks !