change this lines
PHP Code:
while ($hisposts=$DB_site->fetch_array($hisposts_db)) {
$his_posts.='<a href="showthread.php?threadid='.$hisposts[threadid].'">'.$hisposts[title].'</a><br>';
}
into this:
PHP Code:
$counter=0;
while ($hisposts=$DB_site->fetch_array($hisposts_db)) {
$counter++;
$his_posts.=$counter.'. <a href="showthread.php?threadid='.$hisposts[threadid].'">'.$hisposts[title].'</a><br>';
}