dear all, i ran my code below on ie and it works. but when i use netscape 4.76 under linux, i only get the message "submitted" even though i've checked some fields.
what do i need to add to make it work with netscape under linux? code follows: <? if ($_POST["submit"]) { print "submitted<BR>"; for($i=0;$i<sizeof($foo);$i++) { print "$foo[$i]<BR>"; } } else { ?> <form action=<? echo $_SERVER["PHP_SELF"] ?> method=post> <input type=checkbox name=foo[] value=one>One <input type=checkbox name=foo[] value=two>Two <input type=checkbox name=foo[] value=three>Three <input type=submit value=submit name=submit> </form> <? } ?> -- best regards tim __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php