-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (24 loc) · 913 Bytes
/
index.php
File metadata and controls
27 lines (24 loc) · 913 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
<!-- disini kita membuat form nya menggunakan method GET -->
<form method = "GET" action="index.php">
<label>Masukan Nama</label><br/>
<input type="text" name="nama"><br/>
<label>Masukan Alamat</label><br/>
<input type="text" name="alamat"><br/>
<input type="submit" name="oke">
</form>
<!--disini kita membuat form nya menggunakan method POST
<form method = "POST" action="index.php">
<label>Masukan Nama</label><br/>
<input type="text" name="nama"><br/>
<label>Masukan Alamat</label><br/>
<input type="text" name="alamat"><br/>
<input type="submit" name="oke">
</form> -->
<!-- disini kita membuat form nya menggunakan method REQUEST
<form method = "POST" action="index.php">
<label>Masukan Nama</label><br/>
<input type="text" name="nama"><br/>
<label>Masukan Alamat</label><br/>
<input type="text" name="alamat"><br/>
<input type="submit" name="oke">
</form> -->