Five last Announcements:
";
while($a = mysql_fetch_array($get_a))
{
echo "| $a[time]: $a[topic] |
";
}
echo "
Twenty Five Latest News and Upgrades:
";
$get_a = mysql_query("select * from newsandups order by id desc limit 0, 25");
echo "";
while($a = mysql_fetch_array($get_a))
{
echo "| $a[time]: | $a[text] |
";
}
echo "
[Continue]";
$get_mbaa = mysql_query("select * from mb_mb");
while($mbaa = mysql_fetch_array($get_mbaa))
{
$get_new = mysql_query("select * from mb_new where 1 AND id='$playerinfo[id]' AND board='$mbaa[id]'");
$new = mysql_num_rows($get_new);
if($new == "0"){mysql_query("insert into mb_new(id, board, amount)VALUES('$playerinfo[id]', '$mbaa[id]', '0')");}
}
include("bottom.php");
?>