Hi all. I'm having a very strange problem here. I'm working with a php environment on a new server, and for some reason it's not picking up variables that are passed through the querystring.
I've got a file with just the following code:
echo $var;
That's it. Nothing else. And in my personal web space:
http://web.unbc.ca/~gossep/test.php?var=foo
it works fine, but on the new development server,
http://waddington.unbc.ca/test.php?var=foo
it doesn't display at all. And since display_errors is for some reason turned off, I can't see any error messages which would normally be displayed. error_log() is also not working, so that's no use either.
Anyone have any ideas what could be causing this?
Thanks in advance,
P.