Are any of these depricated? If not which is the better one to use?$_GET is the one you should use.$HTTP_GET_VARS is depreciated...has been for a while.
likewise with $_POST and $_COOKIE..use those as opposed to the $HTTP_*_VARS arrays.Also depends on what version of php you are running, but most servers should be running a high enough version for $_GET etc.$_GET introduced in 4.1.0
for earlier versions use $HTTP_GET_VARSCheers guys, appriciate it.
likewise with $_POST and $_COOKIE..use those as opposed to the $HTTP_*_VARS arrays.Also depends on what version of php you are running, but most servers should be running a high enough version for $_GET etc.$_GET introduced in 4.1.0
for earlier versions use $HTTP_GET_VARSCheers guys, appriciate it.