-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_add.php
45 lines (41 loc) · 988 Bytes
/
form_add.php
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
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TITLE</title>
<meta name="description" content="DESCRIPTION">
<link rel="stylesheet" href="PATH">
<!--[if lt IE 9]>
<script src = "http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<form action="putrest.php" method="post">
<table>
<tr>
<td>Nama</td>
<td>:</td>
<td><input type="text" name="nama"></td>
</tr>
<tr>
<td>Nim</td>
<td>:</td>
<td><input type="text" name="nim"></td>
</tr>
<tr>
<td>Program Studi</td>
<td>:</td>
<td><input type="text" name="prodi"></td>
</tr>
<tr>
<td>IPK</td>
<td>:</td>
<td><input type="text" name="ipk"></td>
</tr>
<tr>
<input type="submit" name="kirim">
</tr>
</table>
</form>
</body>
</html>