I have a little problem, I have a php file that start like this:
<?php
ini_set("display_errors", true);
echo "test";
exit();
Somehow this returns an empty page?!
I use ubuntu 10.10, gvim and apache2
Can this have something to do with utf-8 formatting? I just switched to ubuntu and gvim so I am not sure if I use utf-8 or not, but I know it has been known to cause this problem.
EDIT:
When I change the file to
<?php
test
Nothing shows up, but if I change it to:
test
<?php
test shows up ?!