-
Notifications
You must be signed in to change notification settings - Fork 0
/
waitingscreen.php
executable file
·64 lines (58 loc) · 1.16 KB
/
waitingscreen.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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link REL="SHORTCUT ICON" HREF="http://tanto.bioengr.uic.edu/bbtmst/favicon.ico">
<title>bbTM Blast Process</title>
<style type="text/css">
<!--
.style1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
font-weight: bold;
}
body,td,th {
font-family: Arial, Helvetica, sans-serif;
}
.style3 {color: #FF3300}
.style4 {font-size: 12px}
.style5 {font-size: 12px; font-weight: bold; color: #990000; }
.style6 {font-size: 10px}
.style7 {
font-size: 14px;
color: #999999;
}
.style8 {
font-size: 18px;
font-weight: bold;
color: #993300;
}
.style10 {font-size: 18px; font-weight: bold; color: #006699; }
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}
-->
</style>
</head>
<body>
Waiting For BLAST Results,
<br>
Please Be patient
<?php
$file = $_GET['file'];
$ifile = substr($file, 3);
$retval = $_GET['val'];
echo "$cmd\n";
echo "$blastres\n";
header ( 'Location: bbtmstool.php?val=' . $retval . '&file=' . $ifile);
?>
</body>
</html>