Thanks. I think that works. After much figuring, I did write something similar as:
while (list ($key, $val) = each($HTTP_POST_VARS)) {
if (is_array($val)) {
$count = count($val));
echo "Key: ". $key ."<br>";
for ($i=0; $i < $count; $i++) {
echo "Value ". $i ." = ". $val[$i] ."<br>";
}
}
else {
echo "Key = ". $key ." -- Value = ". $val . "<br>";
}
It works! Thanks for your help.