<?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["adminloggedIn"] == FALSE){
header("Location:admin_login.php");
exit;
}
$username=$_SESSION['UserName'];
$sql="SELECT * FROM users WHERE UserName='$username'";
$sql1="SELECT * FROM rights WHERE UserName='$username'";
$result1=mysql_query($sql1);
$result=mysql_query($sql);
$row=mysql_fetch_array($result);
//$row1=mysql_fetch_array($result1);
include('header.php');
include('left1.php');?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Premium Series by Free CSS Templates</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>Untitled Document</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="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr><td width="37%" align="center" bgcolor="#E6E6E6"><strong>Attributes</strong></td>
<td width="63%" align="center" bgcolor="#E6E6E6"><strong>Information</strong></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>UserName</strong></td>
<td width="63%" bgcolor="#FFFFFF" align="center"><?php echo $row['UserName']; ?></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>First Name</strong></td>
<td width="63%" bgcolor="#FFFFFF" align="center"><?php echo $row['FirstName']; ?></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>Last Name</strong></td>
<td width="63%" bgcolor="#FFFFFF" align="center"><?php echo $row['LastName']; ?></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>Age</strong></td>
<td bgcolor="#FFFFFF" align="center"><?php echo $row['Age']; ?></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>Sex</strong></td>
<td bgcolor="#FFFFFF" align="center"><?php echo $row['Sex']; ?></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>Contact No.</strong></td>
<td align="center" bgcolor="#FFFFFF"><?php echo $row['PhoneNo']; ?></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>Email Id</strong></td>
<td align="center" bgcolor="#FFFFFF"><?php echo $row['EmailId']; ?></td>
</tr>
<tr>
<td width="37%" align="center" bgcolor="#FFFFFF"><strong>Designation</strong></td>
<td align="center" bgcolor="#FFFFFF">
<?php
if($row['Type']=='0')
{
echo "Administrator" ;
}
else if($row['Type']=='1')
{
echo "Associate";
}
else if($row['Type']=='2')
{
echo "Event Head";
}
else if($row['Type']=='3')
{
echo "Coordinator";
}
else
{
echo "Assign the designation properly";
}
?></td>
</tr></table><br /><br /><table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="37%" align="center" bgcolor="#E6E6E6"><strong>Event Name</strong></td>
<td width="63%" align="center" bgcolor="#E6E6E6"><strong>Responsibilities</strong></td>
</tr>
<?php
$i=0;
$numberOfRows = MYSQL_NUM_ROWS($result1);
while($i<$numberOfRows){ ?>
<tr>
<td width=37% align="center" bgcolor="#FFFFFF"><?php
// Start looping table row
$row1=mysql_fetch_array($result1);
echo $row1['EventName']; ?></td>
<td width=63% align="center" bgcolor="#FFFFFF"><?php
if($row1['Sponsorships']=='1')
echo "Sponsorship \n";
if($row1['EventAdministration']=='1')
echo "Event Administration \n" ;
if($row1['Hospitality']=='1')
echo "Hospitality \n" ;
if($row1['Accounting']=='1')
echo "Accounting \n" ;
if($row1['PublicRelations']=='1')
echo "Public Relations \n" ;
if($row1['SMSAlerts']=='1')
echo "SMSAlerts \n" ;
$i++;
}
?> </td>
</tr>
</table>
<table>
<br />
<tr>
<td ><a href="editUserDetails.php">Edit Profile</a></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');
?>