I was looking at the code and to make sure your code
works on any server you should use
$HTTP_POST_VARS["varname"] instead of just $name
because if the php implementation has the global
variables turned off, it breaks whereas it'll work with the
$HTTP_POST_VARS["blah"] in either instance.
Thanks for your time
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