-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
46 lines (34 loc) · 956 Bytes
/
index.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
<?php
require_once('misc.php');
require_once('db.php');
$q = array_key_exists('q', $_GET) ? $_GET['q'] : "";
switch($q)
{
case 'showres':
include('header.html');
include('showres.php');
include('footer.html');
break;
case 'showpdf':
include('showpdf.php');
break;
case 'showsign':
include('showsign.php');
break;
case 'signres':
include('signres.php');
break;
case "ue":
default:
include('header.html');
include('ue.php');
include('footer.html');
}
/*
<div class="alert alert-danger" role="alert">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<span class="sr-only">Error:</span>
Unknown Option
</div>
*/
?>