You can access all the form variables using the global $HTTP_POST_VARS array.
Example:
while(list($key,$val) = each($HTTP_POST_VARS)) {
print "$key => $val<br>";
}
The $key would be the name of the form-field and $val would be the value of that field.
--Vamsi
http://php.vamsi.net