poleposters Posted September 16, 2008 Share Posted September 16, 2008 I have a form with around 20 checkbox choices presented to the user. However I only want to allow them to select a maximum of 10. Is this something that can/should be done with PHP? Also my problem becomes a little more complicated. I also want to include text inputs with the form so that users can enter their own choices. I would like to inlcude these "other" choices as part of the limit. Is there a way to do this? Cheers. Link to comment https://forums.phpfreaks.com/topic/124565-limit-number-of-checkboxes-selected/ Share on other sites More sharing options...
vbnullchar Posted September 17, 2008 Share Posted September 17, 2008 use javascripts Link to comment https://forums.phpfreaks.com/topic/124565-limit-number-of-checkboxes-selected/#findComment-643409 Share on other sites More sharing options...
genericnumber1 Posted September 17, 2008 Share Posted September 17, 2008 If you want to check before they submit, use javascript. If you want to check after they submit (ideally you should do both or only php, just using JS without php isn't secure), set all the checkbox name attributes to something like "checkbox[]" and, on the script it submits to use the functions count($_POST['checkbox']); or count($_GET['checkbox']); (depending on your submission type). These will return the number of boxes checked. Link to comment https://forums.phpfreaks.com/topic/124565-limit-number-of-checkboxes-selected/#findComment-643423 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.