Advertisement
jamboljack

Checkbox Array

May 5th, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. // Add
  2. <div class="checkbox checkbox-primary">
  3.     <input type="hidden" name="id[]" value="<?php echo $facility_id; ?>"/>
  4.     <input type="checkbox" value="1" name="check[<?=$facility_id;?>]">
  5.     <label ><?php echo $f->facility_name; ?></label>
  6. </div>
  7.  
  8. // Edit
  9. <div class="checkbox checkbox-primary">
  10.     <input type="hidden" name="idf[]" value="<?php echo $froom_id; ?>"/>
  11.     <input type="checkbox" value="1" name="check[<?=$froom_id;?>]" <?php if ($f->froom_checked == 1) { echo 'checked'; } ?>>
  12.     <label><?php echo $f->facility_name; ?></label>
  13. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement