$HTTP_POST_VARS["testVar"] is from a POST
$HTTP_GET_VARS["testVar"] is from a URL (GET)
$HTTP_COOKIE_VARS["testVar"] would be from a cookie.
Also, there are $HTTP_ENV_VARS, and $HTTP_SERVER_VARS which are environment and server variables respectively. Find more in the PHP manual.