ronhelp Posted September 23, 2009 Share Posted September 23, 2009 I have the following code for a checkbox on one page echo "<input type='checkbox' name='girlattend[]' value='".$row['girl_ID']."' />"; Then on the next page I have this: $girlattend = $_POST['girlattend']; echo "GIRL COUNT: " .count($girlattend); So for example if I have checked 2 boxes off in IE this returns a count of 2 on Safari the same code returns a count of 0. What am I missing?? Quote Link to comment Share on other sites More sharing options...
ronhelp Posted September 24, 2009 Author Share Posted September 24, 2009 I figured it out it was actually some tags above that were not closed properly that were causing this to happen. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.