Anonymous - 2003-01-14

Logged In: YES
user_id=682016

I would use these to make it compatible with all installs of
PHP and it makes the code cleaner. More typing but easier
to understand:
$HTTP_POST_VARS["name"] to get posted form vars
$HTTP_GET_VARS["name"] to get vars that were done w/get
$_COOKIE["name"] to get a cookie variable

That way it'll work on PHP installs that don't have global
varables enabled, but the superglobal arrays. They are neet.
Thanks