<?php
include_once("include/db_connection.php");
session_start();
if($_SESSION["adminloggedIn"] == FALSE){
header("Location:admin_login.php");
exit;
}
?>
<?php
include('header.php');
?>
<?php
$UserName = $_SESSION['UserName'];
$EventId=$_GET['EventId'];
$result4 = mysql_fetch_array(mysql_query("SELECT * FROM events WHERE EventId = $EventId "));
include('leftevent.php');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>View All Polls</title>
<meta name="keywords" content="" />
<meta name="Premium Series" content="" />
<link href="default.css" rel="stylesheet" type="text/css" media="screen" />
<script language="JavaScript" src="gen_validatorv31.js" type="text/javascript"></script>
<title>View All Polls</title>
</head>
<body>
<div id="wrapper">
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="prtCnt" align="center">
<div id="content" align="center">
<div class="post">
<h2 class="title"> </h2>
<div class="entry">
<table width="450" border="0">
<tr>
<td width="190">EventName</td>
<td width="250"><?php echo $result4[EventName];?></td>
</tr>
<tr>
<td>Description</td>
<td><?php echo $result4[Description];?></td>
</tr>
<tr>
<tr>
<td>EventHead</td>
<td><?php echo $result4[EventHead];?></td>
</tr>
<tr>
<td>EventAssociate</td>
<td><?php echo $result4[EventAssociate];?></td>
</tr>
<tr>
<td>EventCoordinators</td>
<td><?php echo $result4[EventCoord1];?></td>
</tr>
<tr>
<td>StartDate</td>
<td><?php echo $result4[StartDate];?></td>
</tr>
<tr>
<td>EndDate</td>
<td><?php echo $result4[EndDate];?></td>
</tr>
<tr>
<td>Venue</td>
<td><?php echo $result4[Venue];?></td>
</tr>
<tr>
<td>Judge</td>
<td><?php echo $result4[Judge];?></td>
</tr>
<tr>
<td>PrizeMoney</td>
<td><?php echo $result4[PrizeMoney];?></td>
</tr>
</table>
</p>
</div>
</div>
</div>
</div>
<!-- end content -->
<!-- start sidebars -->
<!-- end sidebars -->
<div style="clear: both;"> </div>
</div>
<!-- end page -->
</div>
</html>
<?php
include('footer.php');
?>