Answers for "html checkboxes"

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
4

how to make html checkboxes

<input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
<label for="vehicle1"> I have a bike</label><br>
Posted by: Guest on November-23-2020
1

commande checkbox html

<!doctype html>
<html>
  <body>
    
    <input type="checkbox">
    <input type="radio">
    
  </body>
</html>
Posted by: Guest on June-15-2020
0

html checkbox check all

function toggle(source) {
  checkboxes = document.getElementsByName('foo');
  for(var i=0, n=checkboxes.length;i<n;i++) {
    checkboxes[i].checked = source.checked;
  }
}
Posted by: Guest on October-16-2020

Browse Popular Code Answers by Language