As long as the form elements have values (ticked, text filled in etc), you can access the values associatively through something like:
echo "Values submitted via POST method:<br>";
reset ($HTTP_POST_VARS);
while (list ($key, $val) = each ($HTTP_POST_VARS)) {
echo "$key => $val<br>";
}
TG