-
Notifications
You must be signed in to change notification settings - Fork 6
/
events.php
executable file
·84 lines (68 loc) · 2.57 KB
/
events.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
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-signin-client_id" content="307712715810-5gqv439ef8l9hmmod3ggpbdplcc7t7gq.apps.googleusercontent.com">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Team .EXE is the technical team of Computer Science & Engineering Department for technical fest NIMBUS at NIT Hamirpur.">
<meta name="author" content="Team .EXE">
<link rel="icon" href="images/title.png">
<title>Events - Team .EXE</title>
<?php
include_once('stylesheets.php');
include_once('dbconnect.php');
?>
</head>
<body>
<?php
include_once('header.php');
include_once('navigation.php');
$e_id=$_GET['e_id'];
$query= "Select * from event_info Where e_id='$e_id'";
$result = mysqli_query($link,$query);
if(!$result){
echo "nip";
}
?>
<center>
<div class="container">
<h1>Events by Team .EXE</h1>
</div>
</center>
<section id="blog-full-width">
<div class="container">
<?php
include_once('event_embed.php');
?>
<div class="col-md-8">
<article class="wow fadeInDown" data-wow-delay=".5s" data-wow-duration="500ms">
<div class="blog-post-image">
</div>
<div class="blog-content">
<center>
<?php
while($disp=mysqli_fetch_assoc($result)){$name=$disp['e_name'];
$abstract=$disp['e_abstract'];
}
?><div style ="width:56%">
<div class="">
<h1>Events Description</h1></center>
<hr width=86%>
</div>
<section class="border border-dark rounded">
<h1 class="display-5 text-center "><?php echo $name;?></h1>
<h2 class="display-6 text-center mt-3 border-bottom">Abstract</h2>
<p class="mt-4 mx-5 pl-2"><?php echo $abstract;?>
</div>
</div>
</article>
</div>
</div>
</section>
<?php
include_once('footer.php');
?>
</body>
</html>