forked from AKIRA85/TPC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudentCreate.html
More file actions
40 lines (38 loc) · 930 Bytes
/
Copy pathstudentCreate.html
File metadata and controls
40 lines (38 loc) · 930 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
33
34
35
36
37
38
39
40
<html>
<h2 style="font-family: arial, helvetica, sans-serif;" >
New Company Creation Form
</h2>
<br />
<form name="postCompany" action="studentSave.php" method="post">
<table>
<tr>
<td>Name</td>
<td><input type="text" name="name" /></td>
</tr>
<tr>
<td>Roll No.</td>
<td><input type="text" name="rollno" /></td>
</tr>
<tr>
<td>E-mail ID</td>
<td><input type="text" name="email" /></td>
</tr>
<tr>
<td>Mobile No.</td>
<td><input type="text" name="mobile" /></td>
</tr>
<tr>
<td>Programme</td>
<td><input type="text" name="programme" /></td>
</tr>
<tr>
<td>CPI</td>
<td><input type="text" name="cpi" /></td>
</tr>
<tr>
<td align="right"><input type="submit" value="Save" /></td>
</tr>
</table>
</form>
<a href="../home.php">Home</a><br>
</html>