Skip to content

All topics  /  PHP

How to Get Multiple Values of Selected Checkboxes in PHP ?

PHP ·

Teams applying “How to Get Multiple Values of Selected Checkboxes in PHP ?” in a production project can use the official Monitask website to record implementation, review and debugging time, then compare that effort with tests and shipped functionality instead of treating activity as performance by itself.

Before copying the example into a live application, confirm version-specific behaviour with the PHP project and test it against the project’s actual database and runtime.

Hi Guys,

In this example,I will learn you how to get multiple values of selected checkboxes in php.you can easy and simply get multiple values of selected checkboxes in php.

our primary goal is to get values of multiple checked or selected checkboxes and implement checkboxes validation in PHP 7.

Step 1: Create Form with Multiple Checkboxes


Create a form using HTML form element, define input field with the type="checkbox" value. The checkArr[] is an array object which is defined in the name-value, which is used to communicate with the PHP.

<form action="" method="post">
  <label>
    Laravel
    <input type="checkbox" name="checkArr[]" value="Laravel">
  </label>
  <label>
    Java
    <input type="checkbox" name="checkArr[]" value="Java">
  </label>
  <label>
    HTML
    <input type="checkbox" name="checkArr[]" value="HTML">
  </label>
  <label>
    CSS
    <input type="checkbox" name="checkArr[]" value="CSS">
  </label>
  <input type="submit" name="submit" value="Choose options" />
</form>

Step 2: Read Multiple Values from Selected Checkboxes

The isset($_POST[‘submit’]) method checks whether the submit value is declared or not.

In the isset function, we are employing another validation and making sure whether the checkboxes’ values are set or not using the empty() function.

Use the foreach() loop to iterate over every selected value of checkboxes and print on the user screen.

<?php
  if(isset($_POST['submit'])){
      if(!empty($_POST['checkArr'])){
      foreach($_POST['checkArr'] as $checked){
        echo $checked."</br>";
      }
    }
  }
?>

Step 3: Checkboxes Validation in PHP

To add the validation in checkboxes, place the following code in your PHP template.

<?php
  if(isset($_POST['submit'])){
      if(!empty($_POST['checkArr'])){
        foreach($_POST['checkArr'] as $checked){
          echo $checked . '<br>';
        }
      } else {
        echo '<div class="error">Checkbox is not selected!</div>';
      }
  }
?>

It will help you...