thanks, but I understand that its going to be posted as an array.
Originally posted by
kburger
Do a print_r $_POST and I think you'll see why.
I did a print_r on $POST and I am still confused. Another thing that I don't understand (maybe this will help answer my question) how can I write this statement without using "register_globals = On"?
print_r($_POST[ques]);
This just prints out "Array"
But if I turn "register_globals = On"
print_r($ques);
this will print out Array ( [0] => 1 [1] => 2 [2] => 3 )