-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformupdateruang.php
65 lines (64 loc) · 1.74 KB
/
formupdateruang.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>Data Ruang</title>
<link rel="stylesheet" type="text/css" href="CSS/layout.css"/>
<link rel="stylesheet" type="text/css" href="CSS/font.css"/>
<link rel="stylesheet" type="text/css" href="CSS/element.css"/>
<script type="text/javascript" src="JS/krsjs.js"></script>
</head>
<body>
<div id="container">
<div id="header">
<table border="0" cellspacing="10">
<tr>
<td><img src="Images/admin.png" width="150" height="150" /></td>
<td><h1>Admin Page</h1></td>
</tr>
</table>
</div>
<div id="cpanel">
<form action="updateruang.php?id_ruang=<?php echo $_GET['id_ruang']; ?> " method="POST" name="formruang" >
<table border="0" cellspacing="40">
<tr>
<td colspan="3"><h1>Data Ruang</h1></td>
</tr>
<tr>
<td>
<a href="tampilruang.php" title="Kembali"><img src="Images/back.png" /></a>
</td>
</tr>
<?php
include "koneksi.php";
$id = $_GET['id_ruang'];
$tampil = "SELECT * FROM data_ruang WHERE id_ruang=$id;";
$querytampil = mysql_query($tampil);
while($hasil = mysql_fetch_array($querytampil)) {
$koderuang = $hasil['koderuang'];
$kapasitas = $hasil['kapasitas'];
?>
<tr>
<td>Kode Ruang</td>
<td>:</td>
<td><input type="text" name="kdruang" value="<?php echo $koderuang; ?>" /></td>
</tr>
<tr>
<td>Kapasitas</td>
<td>:</td>
<td><input type="text" name="kapasitas" size="15" value="<?php echo $kapasitas; ?>" /></td>
</tr>
<tr>
<td colspan="3">
<input type="submit" name="update" value="Update" />
<input type="reset" name="reset" value="Reset" />
</td>
</tr>
<?php
}
?>
</table>
</form>
</div>
</div>
<div id="footer">Copyright © 2013 ERA</div>
</body>
</html>