add simak to git repo

This commit is contained in:
ryan
2025-10-10 09:25:05 +07:00
commit dc9b19e59f
2037 changed files with 443491 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
include ('../../koneksi.php');
$id=$_POST['id'];
$data=pg_query("SELECT * FROM satuan_kerja WHERE id='$id'");
while($row=pg_fetch_array($data)) {
$id=$row['id'];
$nama=$row['nama'];
}
?>
<form role="form">
<div class="form-group">
<label for="exampleInputEmail1">Nama Satuan Kerja</label>
<input type="hidden" value="<?php echo $id; ?>" id="id_ms_satker">
<input type="text" class="form-control" value="<?php echo $nama; ?>" id="nama_satker">
</div>
</form>