-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.php
More file actions
55 lines (48 loc) · 1.17 KB
/
feedback.php
File metadata and controls
55 lines (48 loc) · 1.17 KB
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
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Student Feedback System</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="topHeader">
CMC B5 PROJECT<br />
<span class="tag">STUDENT FEEDBACK SYSTEM</span>
</div>
<br>
<br>
<br>
<br>
<div id="content" align="center">
<br>
<br>
<span class="SubHead">Student Feedback Step I</span>
<form method="post" action="feedback_step_2.php" >
<div id="table">
<div class="tr">
<div class="td">
<label>Roll No : </label>
</div>
<div class="td">
<select name="roll" required>
<option value="NA" disabled selected> - - Select Roll No. - -</option>
<?php
for($x=133;$x<=200;$x++)
{
?>
<option value="<?php echo $x;?>"><?php echo $x;?></option>
<?php } ?>
</select>
</div>
</div>
</div>
<div class="tdd">
<input type="button" onClick="window.location='mainhome.html'" value="HOME"/> <input type="submit" value="NEXT" />
</div>
<br>
</div>
</form>
<br>
</body>
</html>