[snip]
print_r($_POST['option']);

it prints nothing.
[/snip]

Try resetting the array first, you may be at the end of the array;

reset($_POST);
print_r($_POST);

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to