File size: 1.08Kb
<?php
ERROR_REPORTING(0);
/*
Project: PBNL Forum v2.3
Coded By: Oyebamiji Akorede (Harkorede)
Facebook: http://facebook.com/harkorede94
Email: (harkorede01@gmail.com)
CellPhone +2348029828364
Twitter: @harkorede94
WebSite: http://naijamobile.in
*/
require("../init.php");
if(!isloggedin())
{
header("location: ../index.php");
}
else
{
$user=$_SESSION["user"];
}
echo"<title>$config->title » Messaging</title>";
echo"<div class='body_width'>";
include"../topnav.php";
echo"<center>";
include"../ads.php";
fblike();
echo"</center>";
echo"<center>
<div class='public_message'><div class='success'></div></div>
</center>
<div style='margin-top: 5px;' class='grid3'>
</div>";
echo"<div class='grid3 middle'>
<div class='b_head'>MESSAGING</div>";
$msg=$_GET["msg"];
if($msg!=" ")
{
echo"<div class='msg'>$msg</div>";
}
echo"<div class='list'> <ul> <li><a href='compose.php'>Compose</a></li><li><a href='inbox.php'>Inbox</a></li><li><a href='sent.php'>Outbox</a></li> </ul> </div> ";
echo"<br><div class='link_button'><a href='../main.php'>Go Back</a></div>";
include"../footer.php";
?>