-
Notifications
You must be signed in to change notification settings - Fork 5
/
insert.html
41 lines (39 loc) · 1.03 KB
/
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
38
39
40
41
<html>
<head>
<title>HOSTEL MANAGEMENT SYSTEM</title>
<link rel="stylesheet" type="text/css" href="dbms.css"/>
</head>
<body class="b">
<center>
<br><br>
<img src="vit.jpg">
<br><br>
<h1>VELLORE INSTITUTE OF TECHNOLOGY</h1>
<br>
GIVE THE DETAILS OF THE NEW STUDENT:<br><br>
<form action="insert.php" method="post">
STUDENT ID:
<input type="text" name="sid"/><br><br>
FIRST NAME:
<input type="text" name="fname"/><br><br>
LAST NAME:
<input type="text" name="lname"/><br><br>
FATHER_NAME:
<input type="text" name="father"/><br><br>
DATE OF BIRTH:
<input type="date" name="dob"/><br><br>
BRANCH:
<input type="text" name="branch"/><br><br>
CGPA:
<input type="text" name="cgpa"/><br><br>
MESS ID:
<input type="text" name="mess"/><br><br>
HOSTEL ID:
<input type="text" name="hostel"/><br><br>
ROOM_NO:
<input type="text" name="room"/><br><br>
<input type="submit" value="Submit"/>
</form>
</center>
</body>
</html>