How to verify multiple checkboxes using php

Samuel Asor

I have a list which I am populating from my DB into multiple checkboxes using a foreach loop:

<?php 
$sections_arr = listAllForumBoards(0, 1, 100);
$count_board = count($sections_arr);
$ticker = 0;
foreach($sections_arr as $key => $printAllSections){
$ticker = $ticker + 1;
$sectionId = getBoardPart($printAllSections, 'id');
$sectionName = getBoardPart($printAllSections, 'title');
$sectionSlug = getBoardPart($printAllSections, 'slug');

?>
<dd><label for="<?php echo $sectionSlug; ?>">
<input type="checkbox" name="section[]" id="<?php echo $sectionSlug; ?>" value="<?php echo $sectionId; ?>" /> <?php echo $sectionName; ?></label></dd>
<?php } ?>

The list is populating as expected. But I want to be able to check to make sure that a user selects at least one of the checkboxes. I've searched here in SO and I only got the one that was done using JQuery, but I want to be able to do this verification using PHP

Legionar

In the file, where your form is submitting (action file) add this condition:

if (empty($_POST['section'])) {
    // it will go here, if no checkboxes were checked
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to delete multiple entries using Checkboxes? (PHP)

From Dev

how can I verify if multiple checkboxes are checked

From Dev

php email: multiple precipitants using checkboxes

From Dev

PHP how to multiple rows of form via checkboxes

From Dev

how to get the value of multiple unselected checkboxes in php?

From Dev

How to filter datagridview using multiple checkboxes

From Dev

how can i Insert multiple checkboxes using PHP-jQuery and MSSQL Server?

From Dev

how to get and pass multiple checkboxes value to server side (php) through controller using angularjs

From Dev

How to verify an input field using php

From Dev

creating multiple checkboxes using a while loop in php and html

From Dev

How to validate multiple checkboxes

From Dev

How to delete multiple checkboxes when selected in php and mysql?

From Dev

How to create FILTER BY LOCATION (Using checkboxes) engine using php and ajax

From Dev

How to pass the values of multiple checkboxes checked value using JQuery to a URL

From Dev

How to display multiple filenames with checkboxes inside the listview using pyqt

From Dev

MySQL PHP update multiple checkboxes

From Dev

Multiple checkboxes in razor (using foreach)

From Dev

Check multiple checkboxes using jquery

From Dev

How to Check All Checkboxes using JavaScript in a table row emitted by PHP

From Dev

How to handle dynamic checkboxes inputs in a form using HTML or PHP or JS

From Dev

How to check multiple checkboxes with JavaScript?

From Dev

How to use multiple checkboxes in jmeter?

From Dev

how to manage multiple checkboxes in ember?

From Dev

Using password_verify in PHP

From Dev

How to find value of checkboxes in PHP?

From Dev

How to process 2 checkboxes in PHP?

From Dev

How to Show or Hide multiple divs with multiple checkboxes

From Dev

post from multiple checkboxes php mysql

From Dev

php get label text of multiple checked checkboxes

Related Related

  1. 1

    How to delete multiple entries using Checkboxes? (PHP)

  2. 2

    how can I verify if multiple checkboxes are checked

  3. 3

    php email: multiple precipitants using checkboxes

  4. 4

    PHP how to multiple rows of form via checkboxes

  5. 5

    how to get the value of multiple unselected checkboxes in php?

  6. 6

    How to filter datagridview using multiple checkboxes

  7. 7

    how can i Insert multiple checkboxes using PHP-jQuery and MSSQL Server?

  8. 8

    how to get and pass multiple checkboxes value to server side (php) through controller using angularjs

  9. 9

    How to verify an input field using php

  10. 10

    creating multiple checkboxes using a while loop in php and html

  11. 11

    How to validate multiple checkboxes

  12. 12

    How to delete multiple checkboxes when selected in php and mysql?

  13. 13

    How to create FILTER BY LOCATION (Using checkboxes) engine using php and ajax

  14. 14

    How to pass the values of multiple checkboxes checked value using JQuery to a URL

  15. 15

    How to display multiple filenames with checkboxes inside the listview using pyqt

  16. 16

    MySQL PHP update multiple checkboxes

  17. 17

    Multiple checkboxes in razor (using foreach)

  18. 18

    Check multiple checkboxes using jquery

  19. 19

    How to Check All Checkboxes using JavaScript in a table row emitted by PHP

  20. 20

    How to handle dynamic checkboxes inputs in a form using HTML or PHP or JS

  21. 21

    How to check multiple checkboxes with JavaScript?

  22. 22

    How to use multiple checkboxes in jmeter?

  23. 23

    how to manage multiple checkboxes in ember?

  24. 24

    Using password_verify in PHP

  25. 25

    How to find value of checkboxes in PHP?

  26. 26

    How to process 2 checkboxes in PHP?

  27. 27

    How to Show or Hide multiple divs with multiple checkboxes

  28. 28

    post from multiple checkboxes php mysql

  29. 29

    php get label text of multiple checked checkboxes

HotTag

Archive