-
Notifications
You must be signed in to change notification settings - Fork 0
/
soalan_update.html
38 lines (37 loc) · 1.15 KB
/
soalan_update.html
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
<link rel="stylesheet" href="borang.css">
<link rel="stylesheet" href="button.css">
<h3 class="panjang">KEMASKINI SOALAN</h3>
<form class="panjang" action="soalan_update.php" method="post">
<table>
<tr>
<td>ID Soalan</td>
<td><input type="text" name="idsoalan"></td>
</tr>
<tr>
<td>Soalan</td>
<td><input type="text" name="namasoalan"></td>
</tr>
<tr>
<td>Pilihan A</td>
<td><input type="text" name="pilihana"></td>
</tr>
<tr>
<td>Pilihan B</td>
<td><input type="text" name="pilihanb"></td>
</tr>
<tr>
<td>Pilihan C</td>
<td><input type="text" name="pilihanc"></td>
</tr>
<tr>
<td>Jawapan</td>
<td><input type="text" name="jawapan"></td>
</tr>
<tr>
<td>ID Guru</td>
<td><input type="text" name="idguru"></td>
</tr>
</table>
<button class="update" type="submit">Update</button>
<a href="guru_pilih_soalan.php?pilihan=update" target="kandungan">Atau Pilih Dari Soalan</a>
</form>