<?php
include_once("include/db_connection.php");
session_start();
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>Add Fest Details</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"><?php
$userfinal=$_SESSION['UserName'];
$messageid = $_GET['id'];
$sql1 ="SELECT * FROM messages WHERE message_id = '$messageid' AND from_user = '$userfinal'";
$messa = MYSQL_QUERY($sql1);
//echo $sql1;
$message=mysql_fetch_array($messa);
?>
<table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="38%" align="center" bgcolor="#E6E6E6"><strong>SenT To</strong></td>
<td width="62%" bgcolor="#FFFFFF"><?php echo $message['to_user']; ?></td>
</tr>
<tr>
<td width="38%" align="center" bgcolor="#E6E6E6"><strong>Date</strong></td>
<td bgcolor="#FFFFFF"><?php echo $message['message_date']; ?></td>
</tr>
<tr>
<td width="38%" align="center" bgcolor="#E6E6E6"><strong>Subject</strong></td>
<td bgcolor="#FFFFFF"><?php echo $message['message_title']; ?></td>
</tr>
<tr>
<td width="38%" align="center" bgcolor="#E6E6E6"><strong>Message</strong></td>
<td bgcolor="#FFFFFF"><?php echo $message['message_contents']; ?></td>
</tr>
</table>
<?php
echo '<form name="backfrm" method="post" action="sentitems.php">';
echo '<input type="submit" value="Back to Sent Items">';
echo '</form>';
?>
</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');
?>