-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsertForm.html
More file actions
31 lines (31 loc) · 838 Bytes
/
insertForm.html
File metadata and controls
31 lines (31 loc) · 838 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Formulir</title>
</head>
<body>
<table>
<form method="POST" action="insertProses.php" enctype="multipart/form-data">
<tr>
<td>ID: </td>
<td><input type="number" name="id"></td>
</tr>
<tr>
<td>Nama: </td>
<td><input type="text" name="nama"></td>
</tr>
<tr>
<td>Harga: </td>
<td><input type="number" name="harga"></td>
</tr>
<tr>
<td>Foto Barang: </td>
<td><input type="file" name="poto"></td>
</tr>
<tr>
<td><input type="submit" name="kirim" value="Kirim"></td>
</tr>
</form>
</table>
</body>
</html>