<warning: php newbie ahead>
I've installed php 4.1.2 on Redhat 7.1 with Apache 1.3.23. I've run a few simple example pages to make sure the installation is working, and it seems to be ok -- I can pull data out of a mySQL database, for instance.
BUT -- none of the system variables are available. For instance, the page:
<title>Query a variable</title>
<body>
<?php
echo "$PHP_SELF<br>";
?>
</body>
returns a completely blank page. I've tried other variables, and they don't return a value either. This, not surprisingly, is driving me nuts. Does this make sense to anyone?
Thanks,
Jim Miller