add simak to git repo
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
include('../koneksi.php');
|
||||
$msb_kategori_id=$_POST['msb_kategori_id'];
|
||||
?>
|
||||
<table id="tabel_data_msb_syarat" class="table table-condensed table-striped table-bordered" style="font-size:13px">
|
||||
<thead style="color:grey;font-family:InterSB">
|
||||
<tr width="40">
|
||||
<td align="center">No</td>
|
||||
<td align="center">Kelengkapan</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody style="color:black;font-family:Inter">
|
||||
<?php
|
||||
$no=1;
|
||||
$d=pg_query("SELECT id,msb_kategori_id,item FROM msb_item WHERE msb_kategori_id=$msb_kategori_id");
|
||||
while($r=pg_fetch_array($d)) {
|
||||
?>
|
||||
<tr>
|
||||
<td align="center"><?php echo $no; ?></td>
|
||||
<td><?php echo $r[2]; ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
$no++;
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user