first commit
This commit is contained in:
18
dev/app/master/jenis/modal.php
Normal file
18
dev/app/master/jenis/modal.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
include ('../../koneksi.php');
|
||||
$id=$_POST['id'];
|
||||
$data=pg_query("SELECT * FROM jenis_user WHERE id='$id'");
|
||||
while($row=pg_fetch_array($data)) {
|
||||
$id=$row['id'];
|
||||
$jenis=$row['jenis'];
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
<form role="form">
|
||||
<div class="form-group">
|
||||
<label for="exampleInputEmail1">Jenis</label>
|
||||
<input type="hidden" value="<?php echo $id; ?>" id="id_ms_jenis">
|
||||
<input type="text" class="form-control" value="<?php echo $jenis; ?>" id="nama_jenis">
|
||||
</div>
|
||||
</form>
|
||||
Reference in New Issue
Block a user