File size: 2.94Kb
<?php
ERROR_REPORTING(0);
/*
Project: PBNL Forum v2.3.5
Coded By: Otegbeye Psalmuel (King Emir)
Facebook: http://facebook.com/eo.sam1
Email: (Naijahackstar@gmail.com)
CellPhone +2348124625313
Twitter: @kingemir1
WebSite: http://www.naijakit.com
*/
require("../init.php");
if(!isloggedin())
{ header('location: ../index.php'); }
else { $user=$_SESSION["user"];
$banned=user_info($user, banned);
if($banned==1) { header("location: ../logout.php"); exit(); } else { updateonline(); } }
echo "<title>$config->title » Forums</title>";
echo"<style type='text/css'>
<!--
.style2 {
color: #FF0000;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 13px;
} .style4 {
color: #FFFFFF;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 13px;
}
.style5 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 13px;
}
-->
</style><div class='body_width'>";
include"../topnav.php";
echo"<div class='clearfix'></div>
<div style='clear: both'></div>
<center> ";
echo"<center>";
include"../ads.php";
fblike();
echo"</center>";
echo"<center>
<div class='public_message'><div class='success'></div></div>";
$msg=cleanvalues2($_GET["msg"]);
if($msg!==" ")
{
echo"<div class='msg'>$msg</div>";
}
echo"</center>";
echo"<div style='margin-top: 5px;' class='grid3'>
<br />
</div>
";
echo"<div class='grid3 middle' align='center'><div class='b_head'>FORUMS<br></div>";
echo"<div class=''><span class='style2'></span> <span class='style4'></span>
<a href='search.php'><img src='../images/search.gif' width='20' height='20' border='0'><br>Search for Topics</a><div class='style4'> </div>
<br>";
$query=mysql_query("SELECT * FROM b_forums ORDER BY id DESC");
$count=mysql_num_rows($query);
if($count>0)
{
while($row=mysql_fetch_array($query))
{
$name=cleanvalues2($row["name"]);
$id=$row["id"];
$topics=$row["topics"];
$img=$row["img"];
if(!empty($img))
{
$img="<img src='$img' alt='img' height='48' width='48'/>";
}
else
{
$img="<img src='../images/forum_icon.png' alt='img' height='48' width='48'/>";
}
$nquery=mysql_query("SELECT * FROM b_topics WHERE forumid=$id");
$num=mysql_num_rows($nquery);
echo"<div class='forum_container'> <div class='forum-list'> <ul> <li> <table border='0' width='100%'> <tbody><tr> <td width='8%'>$img</td><td width='92%'> <table border='0' width='100%'> <tbody><tr> <td class='post-head'><a href='topics.php?id=$id'><font color='#ffffff'>$name</font></a></td> </tr> <tr> <td class='post-info'> <div><span class='style'> Total Topics: $num</span> </div>
</td> </tr> </tbody></table> </td> </tr> </tbody></table> </li></div></div> ";
}
}
else
{
echo"<font color='red'><center>No forum created yet</center></font>
";
}
echo "</div></div>
<div class='grid3' style='margin-top: 5px;'>
</div> <div class='clearfix'></div> </div> </div>";
include"../footera.php";?>