<?php
include_once("include/db_connection.php");
header("Expires: Thu, 17 May 2001 10:17:17 GMT"); // Date in the past
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header ("Pragma: no-cache"); // HTTP/1.0
session_start();
if($_SESSION["loggedIn"] == FALSE){
header("Location:user_login.php");
exit;
include_once("config.php");
}
$UserName=$_SESSION['UserName'];
include('header1.php');
?>
<?php
$counter = mysql_fetch_array(mysql_query("SELECT COUNT(PollId) FROM polls"));
//echo "$counter[0]"."<br/>";
$temp=mysql_query("SELECT PollId FROM polls ORDER BY (PollId) DESC ");
?>
<?php
$UserName = $_SESSION['UserName'];
$EventId=$_GET['EventId'];
//$TableName="Poll"."$PollId";
//echo ;
//echo $EventId;
include('associate_leftevent.php');
//include'$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']'.'leftevent.php';
//include ("$_SERVER['HTTP_HOST']"."leftevent.php?&a='$EventId'");
$result4 = mysql_fetch_array(mysql_query("SELECT * FROM events WHERE EventId = $EventId "));
?>
<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 bgcolor="blue">
<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="95%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="190" align="center" bgcolor="#E6E6E6" >Attributes</td>
<td width="250" bgcolor="#E6E6E6">Information</td>
</tr> <tr>
<td width="190" align="center" bgcolor="#FFFFFF" >EventName</td>
<td width="250" bgcolor="#FFFFFF"><?php echo $result4[EventName];?></td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">Description</td>
<td bgcolor="#FFFFFF"><textarea readonly="true" name="detail" cols="30" rows="3" id="detail" ><?php echo $result4[Description];?></textarea></td>
</tr>
<tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">EventHead</td>
<td bgcolor="#FFFFFF"><?php echo $result4[EventHead];?></td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">EventAssociate</td>
<td bgcolor="#FFFFFF" ><?php echo $result4[EventAssociate];?></td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">EventCoordinators</td>
<td bgcolor="#FFFFFF"><?php echo $result4[EventCoord1]; ?>
<?php echo $result4[EventCoord2];?>
<?php echo $result4[EventCoord3];?>
<?php echo $result4[EventCoord4];?>
<?php echo $result4[EventCoord5];?>
</td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">StartDate</td>
<td bgcolor="#FFFFFF"><?php echo $result4[StartDate];?></td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">EndDate</td>
<td bgcolor="#FFFFFF" ><?php echo $result4[EndDate];?></td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">Venue</td>
<td bgcolor="#FFFFFF"><?php echo $result4[Venue];?></td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">Judge</td>
<td bgcolor="#FFFFFF"><?php echo $result4[Judge];?></td>
</tr>
<tr>
<td width="190" align="center" bgcolor="#FFFFFF">PrizeMoney</td>
<td bgcolor="#FFFFFF"><?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');
?>