add sppd to git repo

This commit is contained in:
ryan
2025-10-09 13:13:09 +07:00
commit cc020ada92
1697 changed files with 394218 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
include ('../../koneksi.php');
$id=$_POST['id'];
$data=pg_query("SELECT * FROM sp_jenis_user 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">Jenis User</label>
<input type="hidden" value="<?php echo $id; ?>" id="jns_user_id">
<input type="text" class="form-control" value="<?php echo $nama; ?>" id="nama_jns_user">
</div>
</form>