🙁
I'm using PHP 4.2.3 and have noticed some differences between my system and the norm.
Theres probably something really easy I need to do in my php.ini but I'm not sure what.
I note that when I try to use generic code I find on the internet I have to declare $PHP_SELF = $_SERVER['PHP_SELF'];
and I can't call url.string var's I have to call them using $GET[]
so I usually just do this:
if(isset($GET['urlvar'])) $urlvar=$_GET['urlvar'];
to ensure all the downloaded code works that uses that "urlvar" variable
What setting do I have to change to use these var's properly.
thx in advance..