$HTTP_POST_VARS and GET are deprecated. In version 4.1 and on, use
$POST and $GET.
in future versions of php the default setting for track vars will be off. This means you should start coding to use the values from the arrays you expect them to show up. $POST and $GET are always global and you do NOT need to use global in a function, for instance:
function dumpget() {
print_r($_GET);
}
will show all the get variables.
This new way of interacting with external input has been put into place to avoid security problems with bad code. Read the changelog for 4.0 > 4.1 for more details.