php checkbox checked code example

Example 1: html checkbox

<!--
  You can group and post different values with the same "name".
  When posted to PHP, all checked boxes' values will appear under
  the "peripherals" element in `$_POST` array.
  E.g. if we check "screen" & "keyboard" and post the form then
  `$_POST` will contain `['peripherals' => ['screen', 'keyboard']]`
-->
<form>
  <input type="checkbox" id="periph1" name="peripherals" value="screen">
  <label for="periph1"> I have a Screen</label>
  <input type="checkbox" id="periph2" name="peripherals" value="keyboard">
  <label for="periph2"> I have a Keyboard</label>
  <input type="checkbox" id="periph3" name="peripherals" value="mouse">
  <label for="periph3"> I have a Mouse</label>
  <button type="submit">Send</button>
</form>

Example 2: how to display checked checkbox value in php

<td align="center"><h4>Portrait Packages</h4>
        <!--Please select the package(s) you wish to purchase.--></td>
        
          
          <td>
          	<input type="checkbox" name="package[]" value="bronze"> Bronze - $62.95<br>
            <input type="checkbox" name="package[]" value="silver"> Silver - $65.95<br>
          	<input type="checkbox" name="package[]" value="gold"> Gold - $67.95<br>
            <input type="checkbox" name="package[]" value="platinum"> Platinum - $69.95<br>
            <input type="checkbox" name="package[]" value="unbelievable"> Unbelievable - $83.95<br>
          	<input type="checkbox" name="package[]" value="astonishing"> Astonishing - $86.95<br>

          </td>
        </tr>
         <tr>
        <td align="center"><h4>Additional Prints with Package Purchase</h4>
 </td>
        
          
          <td>
          	<input type="checkbox" name="print[]" value="three_by_five"> Four 3x5's - $16.00<br>
            <input type="checkbox" name="print[]" value="five_by_seven"> Two 5x7's - $16.00<br>
          	<input type="checkbox" name="print[]" value="eight_by_ten"> One 8x10 - $16.00<br>
            <input type="checkbox" name="print[]" value="sixteen_wallets"> 16 Wallets - $16.00<br>
            <input type="checkbox" name="print[]" value="twentyfour_wallets"> 24 Wallets - $30.95<br>
          	<input type="checkbox" name="print[]" value="ten_by_thirteen"> One 10x13 - $21.00<br>

          </td>
        </tr>
        <tr>
        <td align="center"><h4>Additional Prints without Package Purchase</h4>
 </td>
         <td>
          	<input type="checkbox" name="print_nopack[]" value="three_by_five_nopack"> Four 3x5's - $40.95<br>

            <input type="checkbox" name="print_nopack[]" value="five_by_seven_nopack"> Two 5x7's - $44.95<br>
          	<input type="checkbox" name="print_nopack[]" value="eight_by_ten_nopack"> One 8x10 - $46.95<br>
            <input type="checkbox" name="print_nopack[]" value="sixteen_wallets_nopack"> 16 Wallets - $25.95<br>
            <input type="checkbox" name="print_nopack[]" value="twentyfour_wallets_nopack"> 24 Wallets - $30.95<br>
          	<input type="checkbox" name="print_nopack[]" value="ten_by_thirteen_nopack"> One 10x13 - $50.95<br>

          </td>
        </tr>
        <tr>
          <td align="right" valign="top"><label for="message">Special Instructions:</label>  </td>
          <td><textarea name="message" id="message" cols="50" rows="3"></textarea></td>
        </tr>