Nice

Glad you got it working. I also have the numbers on my site but forgot to post the modification.
If anyone is interested:
change:
Code:
while ($latest_array = mysql_fetch_array($resultlatest)) {
echo "<FONT SIZE=\"1\" FACE=\"Verdana, Arial, Helvetica, sans-serif\"> °
<A HREF=\"http://www.extremeforums.com/forums/member.php?action=getinfo&userid=$latest_array[userid]\">$latest_array[username]</A></FONT><BR>";
}
to:
Code:
while ($latest_array = mysql_fetch_array($resultlatest)) {
echo "<FONT SIZE=\"1\" FACE=\"Verdana, Arial, Helvetica, sans-serif\"> °
<A HREF=\"http://www.extremeforums.com/forums/member.php?action=getinfo&userid=$latest_array[userid]\">$latest_array[username]</A> (<i>$latest_array[posts]</i>)</FONT><BR>";
}
~Chris