-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontestant.php
71 lines (70 loc) · 2.42 KB
/
contestant.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
<!DOCTYPE html>
<html>
<head>
<title>Contestant list</title>
<?php
include('session.php');
?>
</head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="cssmain/maincontestant.css">
<link rel="stylesheet" type="text/css" href="bootstrap/fonts/glyphicons-halflings-regular.woff">
<body>
<font face="Oswald">
<div class="topnav" id="myTopnav">
<span class="no">StudentSpace</span>
<a href=<?php if(isset($_SESSION['login_user']))echo "'logout.php'"; else echo "'mylogin.php'"?>><?php if(isset($_SESSION['login_user']))echo "Sign Out"; else echo "Sign In"?></a>
<?php if(isset($_SESSION['login_user'])) echo "<font color='white'><a>Welcome, $login_session</a></font>";?>
<a href="contactus.html">Contact</a>
<a href="aboutus.html">About</a>
<a href="test.php">Home</a>
</div>
<div class="task">
<?php $rid=$_POST['tid'];
$p=mysqli_query($connection,"select title from task where tid='$rid'");
$r=$p->fetch_assoc();
$p=$r['title'];
$q=mysqli_query($connection,"select name from users where uid in (select u_id from comit where t_id='$rid')");
?>
<div class="taskname"><center><?php echo $p;?></center></div><hr color="black">
<ol>
<?php while($canlist = $q->fetch_assoc()){?>
<li><?php echo $canlist['name'];?></li>
<?php } ?>
</ol>
</div>
<div class="downb">
<div class="row">
<div class="col-xl-6 col-sm-12 alink">
<a href="https://www.google.co.in/maps?q=sies+gst&um=1&ie=UTF-8&sa=X&ved=0ahUKEwj285rZ_YvXAhUB6Y8KHYOWA-EQ_AUIDCgD">
<div class="downb1">
<div>
Sies Gst
</div>
<div>
Vidyapuram,Sector 5
</div>
<div>
Nerul, Navi Mumbai
</div>
<div>
Maharashtra 400706
</div></a>
</div>
</div>
<div class="col-xl-6 downb2">
<div class="col-xl-6 col-sm-10 downb2">
<div>Made by</div>
<div>Students of</div>
<div>Computer Department</div>
<div>SIES GST</div>
</div></div></div>
<center><div class="downbl">©Computer Department of SIES GST</div></center>
</div>
</div>
</div>
</font>
</body>
</html>