|
Posted by ZeldorBlat on 06/19/07 23:11
On Jun 19, 7:07 pm, mrbog <dterr...@hotmail.com> wrote:
> Here's my code:
>
> <?php
>
> error_reporting(E_ALL);
> ini_set("display_startup_errors","1");
> ini_set("display_errors","1");
>
> wefw
> wefwef=wefwe
> 2349023909()
> ;wrgwrg ====232
>
> phpinfo(); ?>
>
> I get a blank page.
>
> If I take out the crap, it prints phpinfo() just fine.
>
> PHP 4.3.something...
You have a syntax error, so the script can't even be parsed. If it
can't be parsed it can't be executed, so your error_reporting() and
ini_set() commands aren't even being run.
If you set those in php.ini (which is read before the script is
parsed) you should see the error.
Navigation:
[Reply to this message]
|