Forum Moderators: coopster
*sigh
I just heard of GET variables today so I was trying to see what it does... instead of assigning values correctly as you have shown ($a = $_GET["b"]), i set $a=$b (which somehow worked unless $a was set to some predefined value). v_v see all the problems that result when I don't learn this systematically...
Thanks again. =)
this will work if register_globals is on though we don't like doing that as it can cause all sorts of security issues
($a = $_GET["b"])
this is the correct way, we just ignore whether register_globals is on or off, it is always off by default now but some foolish hosts turn it on to be backward compatible