-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_data.php
More file actions
32 lines (30 loc) · 874 Bytes
/
add_data.php
File metadata and controls
32 lines (30 loc) · 874 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
32
<?php
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BELAJAR CRUD</title>
</head>
<body>
<form method="POST" action="proses.php" enctype="multipart/form-data">
<label>nisn</label> <!-- inputan pertama -->
<input type="number" name="nisn">
<br><br>
<label>nama</label> <!-- inputan kedua -->
<input type="text" name="nama">
<br><br>
<label>alamat</label> <!-- inputan ketiga -->
<input type="text" name="alamat">
<br><br>
<label>jenis kelamin</label> <!-- inputan keempat -->
<input type="text" name="jenis_kelamin">
<br><br>
<label>foto</label> <!-- inputan kelima -->
<input type="file" name="foto" accept="image/*" required>
<br><br>
<input type="submit" name="submit"> <!-- tombol kirim -->
</form>
</body>
</html>