There are two global variables created by PHP automatically:
$HTTP_POST_VARS
This is an associative array of any values submitted via form post. You would access them by name, for example:
$field_value = $HTTP_POST_VARS['my_form_field_name'];
This is the equivalent of ASPs Request.Form("field_name").
$HTTP_GET_VARS
This is an associative array of any values passed over the query string.
This is the equivalent of ASPs Request.QueryString("field_name").
Hope this helps,
Jack