I parse from MYSQL into checkbox with foreach. But I want to get checked checkbox value from that foreach checkbox. So I could parse another record from MYSQL with this checked values.
I'm using CodeIgniter
<?php foreach($tb_pertanyaan->result() as $row): ?>
<fieldset id="<?php echo $row->kode_pertanyaan; ?>">
<h6 style="text-indent :2em;"><input type="checkbox" name="kode_pertanyaan" value="<?php echo $row->kode_pertanyaan; ?>"> <?php echo $row->pertanyaan; ?><br> </h6>
</fieldset>
<?php endforeach;?>