-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch.php
41 lines (33 loc) · 1.13 KB
/
batch.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
<!-- This is individual batch page, and contains the
list of specializations like Civil Engineering, Computer Engineering etc. -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<!-- dynamically generates a table of links -->
<?php
$degree = $_SERVER['QUERY_STRING'];
include 'batch_list.php';
?>
<head>
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: orange;
color: white;
text-align: center;
}
</style>
<title>Notes Archive</title>
</head>
<body>
<h1>IITP Notes Archive</h1>
<table>
<tr><th><a href="?C=N;O=D">Name</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a></th></tr>
<tr><th colspan="5"><hr></th></tr>
<tr><td valign="top"><img src="/icons/back.gif" alt="[PARENTDIR]"></td><td><a href="/">Parent Directory</a> </td><td> </td><td align="right"> - </td><td> </td></tr><tr><th colspan="5"><hr></th></tr>
<?php echo $list; ?>
</table>
<footer class="footer">Produced by <a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Naren Nath</a> and <a href="www.facebook.com">Sujeeth</a></footer>
</body></html>