-
Notifications
You must be signed in to change notification settings - Fork 0
/
incorrect_print.php
executable file
·66 lines (63 loc) · 2.01 KB
/
incorrect_print.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="bootstrap-datetimepicker.min.css">
<link rel="stylesheet" href="portal_design.css">
<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
<title>Code here ;)</title>
<link rel='icon' href='IIITGLogo2.png'>
<style>
h2,h3,h4,h5,h6{
color: #000080;
}
body {
background-image: url("i.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 80% auto
max-width: 50%;
height: auto;
}
</style>
</head>
<body>
<ul class="nav nav-tabs" >
<li class="active"><a href="index.php">Home</a></li>
<li><a href="mainpage.php">Problems</a></li>
<li><a href="contest.php">Contest</a></li>
<li><a href="questions.php">ViewSubmissions</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
<div class="table" style="max-width: 50%;margin: 3%">
<table width="300px" border="0">
<tr>
<th><h2><b><i> Details :</i></b></h2></th>
</tr> <tr>
<td><b><i>Result:</i></b></td>
<td><b> <?php echo htmlspecialchars($result);?> </b></td>
</tr> <tr>
<td> <b><i>Time:</i></b> </td>
<td> <?php echo htmlspecialchars($time);?> </td>
</tr> <tr>
<td><b><i>Date:</i></b></td>
<td> <?php echo htmlspecialchars($date);?> </td>
</tr> <tr>
<td><b><i>RunTime:</i></b> </td>
<td> <?php echo htmlspecialchars($runtime);?> </td>
</tr> <tr>
<td> <b><i>Memory:</i></b> </td>
<td> <?php echo htmlspecialchars($memory);?> </td>
</tr> <tr>
<td> <b><i>Language:</i></b></td>
<td> <?php echo htmlspecialchars($languageID);?> </td>
</tr>
</table>
</div>
<div class="container-fluid">
<a id="linkstyle" href="pages.php?var=<?php echo $Dir ?>">Previous solutions for this problem</a>
</div>
</body>
</html>