nah actually Boofo that was my bad... in the member.php replace the code i just gave you with this code:
PHP Code:
// +++++++ Start Time Online Hack [ g-force2k2 ] +++++++
$userinfo[onlinetime] = dotimeonline($userinfo[timeonline]);
if($userinfo[timeonline] > 0) {
eval("\$getinfo_timeonline = \"".gettemplate('getinfo_timeonline')."\";");
} else {
$getinfo_template = "";
}
// +++++++ Start Time Online Hack [ g-force2k2 ] +++++++
that should fix that problem
now open index.php
find:
PHP Code:
// get total posts
above that add:
PHP Code:
// +++++++ Total Time Online Hack v1.0 [ g-force2k2 ] +++++++
$topuseronline = $DB_site->query_first('
SELECT userid, username, timeonline
FROM user
ORDER BY timeonline
DESC LIMIT 1');
$totaltimeonline = dotimeonline($topuseronline[timeonline]);
$ftopuseronline = "<b>Top User Online:</b> <a href='member.php?s=$session[sessionhash]&action=getinfo&userid=$topuseronline[userid]'>$topuseronline[username]</a> : $totaltimeonline";
// +++++++ Total Time Online Hack v1.0 [ g-force2k2 ] +++++++
open forumhome template:
place where you want to show :
PHP Code:
$ftopuseronline
regards
g-force2k2