Who's eyes here are better than mine? Please help!
<?
$conn = mysql_connect("*****", "***", "****") or die("Could not connect");
mysql_select_db("***", $conn);
$result = mysql_query("SELECT FROM forums", $conn) or die("Invalid query");
//list all the forums
while ($current = mysql_Fetch_Array($result)) {
$counter = mysql_query("SELECT * FROM topics WHERE forum='$current[name]'", $conn);
$numtopics = mysql_num_rows($counter);
$numpages = $numtopics / 20;
if($numpages % 20 = 0)
{
$numpages++;
}
echo "<BR><BR><FONT SIZE=+1><A HREF='http://forum.levx.net/topicview.php?forum=".$current[name]."&page=".$numpages."&addpost=no'>".$current[number].". ".$current[name]."</A><BR></FONT>";
echo "<FONT SIZE=-1>".$current[description]." (Moderators : ".$current[moderators].")</FONT>";
}
?>