How to check multiple chekbox from database value – PHP
I have this code to showing value from database as well as checking the checkbox that have the value : <?php $result = mysqli_query($kon,"SELECT jenis FROM pasien WHERE nopemeriksaan = $nopemeriksaan"); while($row = mysqli_fetch_array($result)) { $jenis = explode(",", $row['jenis']); print_r($jenis);…