-
Notifications
You must be signed in to change notification settings - Fork 0
/
soalan_insert.html
37 lines (36 loc) · 1.12 KB
/
soalan_insert.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
<link rel="stylesheet" href="borang.css">
<link rel="stylesheet" href="button.css">
<h3 class="panjang">TAMBAH SOALAN BARU</h3>
<form class="panjang" action="soalan_insert.php" method="post">
<table>
<tr>
<td>ID Soalan</td>
<td><input type="text" name="idsoalan" value="S001"></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" placeholder="masukkan A atau B atau C"></td>
</tr>
<tr>
<td>ID Guru</td>
<td><input type="text" name="idguru" placeholder="G01"></td>
</tr>
</table>
<button class="tambah" type="submit">Tambah</button>
</form>