Answers for "php input checkbox"

17

html checkbox

<!--
  You can also group multiple checkboxes by giving them the same "name".
  When posted to PHP, all the checked boxes' values will appear in the
  $_POST array under an index with the same name as your checkboxes.

  E.g. if we check "bananas" and "apples" below and post the form then
  our $_POST array will look something like this:
  ['fruit' => ['bananas', 'apples']]
-->
<form>
  <label>
    <span>Bananas</span>
    <input type="checkbox" name="fruit[]" value="bananas">
  </label>
  
  <label>
    <span>Apples</span>
    <input type="checkbox" name="fruit[]" value="apples">
  </label>
  
  <label>
    <span>Grapes</span>
    <input type="checkbox" name="fruit[]" value="grapes">
  </label>
  
  <button type="submit">Submit</button>
</form>
Posted by: Guest on April-08-2020
0

php form checkbox

<!DOCTYPE html>
<html>
<body>

<h1>Show Checkboxes</h1>

<form action="/action_page.php">
  <input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
  <label for="vehicle1"> I have a bike</label><br>
  <input type="checkbox" id="vehicle2" name="vehicle2" value="Car">
  <label for="vehicle2"> I have a car</label><br>
  <input type="checkbox" id="vehicle3" name="vehicle3" value="Boat">
  <label for="vehicle3"> I have a boat</label><br><br>
  <input type="submit" value="Submit">
</form>

</body>
</html>
Posted by: Guest on March-11-2021

Browse Popular Code Answers by Language