-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcollegeresults.php
116 lines (115 loc) · 3.2 KB
/
collegeresults.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php include 'header.php';
include 'validation.php';
include 'homesidenavbar.php'; ?>
<div class="col-sm-9">
<div class="main" id="myprofile">
<center>
<h1>College Academic Results (2014 - 2015)</h1><br />
<h3> Computer Engineering (CO)</h3>
<div class="eventtable table-responsive">
<table class="headtable">
<tr>
<th>Year</th>
<th>Name</th>
<th>Aggregate %</th>
</tr>
<tr>
<td>1</td>
<td>Nishita Raman</td>
<td>95.23%</td>
</tr>
<tr>
<td>2</td>
<td>Jay Thorat</td>
<td>93.57%</td>
</tr>
<tr>
<td>3</td>
<td>Vidhi Barve</td>
<td>94.86%</td>
</tr>
</table>
</div>
<br />
<h3> Computer Technology (CM)</h3>
<div class="eventtable table-responsive">
<table class="headtable">
<tr>
<th>Year</th>
<th>Name</th>
<th>Aggregate %</th>
</tr>
<tr>
<td>1</td>
<td>Revati Bose</td>
<td>94.15%</td>
</tr>
<tr>
<td>2</td>
<td>Aditi Bansal</td>
<td>93.78%</td>
</tr>
<tr>
<td>3</td>
<td>Ravi Dhoble</td>
<td>93.81%</td>
</tr>
</table>
</div>
<br />
<h3> Electronics & Telecommunication (EJ)</h3>
<div class="eventtable table-responsive">
<table class="headtable">
<tr>
<th>Year</th>
<th>Name</th>
<th>Aggregate %</th>
</tr>
<tr>
<td>1</td>
<td>Shreya Ladd</td>
<td>94.52%</td>
</tr>
<tr>
<td>2</td>
<td>Amir Singh</td>
<td>93.47%</td>
</tr>
<tr>
<td>3</td>
<td>Priya Sable</td>
<td>94.79%</td>
</tr>
</table>
</div>
<br />
<h3>Electronics & Communication (ET)</h3>
<div class="eventtable table-responsive">
<table class="headtable">
<tr>
<th>Year</th>
<th>Name</th>
<th>Aggregate %</th>
</tr>
<tr>
<td>1</td>
<td>Vedant Kedare</td>
<td>92.56%</td>
</tr>
<tr>
<td>2</td>
<td>Anushka Wagh</td>
<td>91.96%</td>
</tr>
<tr>
<td>3</td>
<td>Piyush Nandankar</td>
<td>93.98%</td>
</tr>
</table>
</div>
</center>
</div>
</div>
</div>
<?php include 'footer.php'; ?>