It is in a array $HTTP_POST_VARS[], but I don't know about whether or not to use the global line. I myself always use the global line with the actual variables, because then if I have to run my code on a server where track_vars and global_(something) (I can't remember exactly what the name of the property in php.ini is, but it makes all the PHP variables, like $PHP_SELF and stuff global variables without declaring them global in the functions) turned off.
--Jason