Open online.php
Just take this coding:
PHP Code:
$aposts="10";
$posting="10";
$posterlink="<tr><td bgcolor=\"{tableheadbgcolor}\" align=\"center\"><smallfont color=\"{tableheadtextcolor}\"><b><a href=\"$PHP_SELF?action=show_more\">[ View More Posts ]</b></smallfont></td></tr>";
if($action=="show_more") {
$aposts="20";
$posting="20";
$posterlink="";
}
And Change it to this:
PHP Code:
$aposts="5";
$posting="5";
$posterlink="<tr><td bgcolor=\"{tableheadbgcolor}\" align=\"center\"><smallfont color=\"{tableheadtextcolor}\"><b><a href=\"$PHP_SELF?action=show_more\">[ View More Posts ]</b></smallfont></td></tr>";
if($action=="show_more") {
$aposts="20";
$posting="20";
$posterlink="";
}
Then you should get what you want

I was thinking of basing it on a query but i don't know if ppl want to run queries necessarily :P anyways hope that helps
g-force2k2