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
+43
View File
@@ -0,0 +1,43 @@
<?php
include ('../../koneksi.php');
$id=$_POST['id'];
$data = pg_query("SELECT * FROM rekanan
WHERE id='$id'");
while($row=pg_fetch_array($data)) {
$id=$row['id'];
$nama=$row['nama'];
$alamat=$row['alamat'];
$npwp=$row['npwp'];
$username=$row['username'];
$password=$row['password'];
}
?>
<input type="hidden" id="id_ms_rekanan" value="<?php echo $id; ?>">
<form role="form">
<div class="form-group">
<label for="exampleInputEmail1">Nama Rekanan</label>
<input type="text" class="form-control" value="<?php echo $nama; ?>" id="nama" >
</div>
<div class="form-group">
<label for="exampleInputEmail1">Alamat</label>
<input type="text" class="form-control" value="<?php echo $alamat; ?>" id="alamat" >
</div>
<div class="form-group">
<label for="exampleInputEmail1">NPWP</label>
<input type="text" class="form-control" value="<?php echo $npwp; ?>" id="npwp" >
</div>
<div class="form-group">
<label for="exampleInputEmail1">Username</label>
<input type="text" class="form-control" value="<?php echo $username; ?>" id="username" >
</div>
<div class="form-group">
<label for="exampleInputEmail1">Password</label>
<input type="text" class="form-control" value="<?php echo $password; ?>" id="password" >
</div>
</form>