добавь в incfiles/func.php:
function upload()
{
global $realtime;
$fl= mysql_query("select * from `upload` where type='file' and moder='1' ;");
$countf = mysql_num_rows($fl);
$old = $realtime - (3 * 24 * 3600);
$fl1 = mysql_query("select * from `upload` where time > '". $old. "' and type='file' ;");
$countf1 = mysql_num_rows($fl1);
$out = $countf;
if ($countf1 > 0)
{
$out = $out. "/<font color='#FF0000 '>+$countf1</font>";
}
return $out;
}и в pages/mainmenu.php:
echo '<a href="upload/">Обменник</a> (' . upload() . ')<br />';