it didn't work on me.
Time Online
Collapse
X
-
add this in core to ya addonline function
$lastact=mysql_fetch_array(mysql_query("SELECT lastact FROM members WHERE uid='".$uid."'"));
$user_time=mysql_fetch_array(mysql_query("SELECT timeon FROM members WHERE uid='".$uid."'"));
$timetoadd=microtime(get_as_float)-$lastact[0];
if($timetoadd>120)$timetoadd=0;
mysql_query("UPDATE members SET timeon='".($user_time[0]+$timetoadd)."' WHERE uid='".$uid."'");
and this in profiles
echo "<b>Time Online:</b> ".gettimemsg($pinfo[4])."<br/>";
and sql
`timeon` int(255) NOT NULL default '0',
Comment
Comment