Jump to content

Limit number of checkboxes selected.


poleposters

Recommended Posts

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

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.