first commit

This commit is contained in:
2024-05-31 14:18:00 +07:00
commit 1f8ef5e17f
4029 changed files with 777987 additions and 0 deletions

24
app/master/kode/modal.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
include ('../../koneksi.php');
$id=$_POST['id'];
$data=pg_query("SELECT * FROM kode WHERE id='$id'");
while($row=pg_fetch_array($data)) {
$id=$row['id'];
$kode=$row['kode'];
$keterangan=$row['keterangan'];
}
?>
<form role="form">
<div class="form-group">
<label for="exampleInputEmail1">Kode</label>
<input type="hidden" value="<?php echo $id; ?>" id="kode_id">
<input type="text" class="form-control" value="<?php echo $kode; ?>" id="kode">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Keterangan</label>
<input type="text" class="form-control" value="<?php echo $keterangan; ?>" id="keterangan">
</div>
</form>