i have found the answer
here it is for who wants it
PHP Code:
$userid = $user['userid']; // replace this to wanted id
// online part
$datecut = TIMENOW - $vboptions['cookietimeout'];
$useronoff=$DB_site->query_first("SELECT COUNT(*) AS count FROM session WHERE userid='$userid' AND lastactivity>$datecut");
$useronline=$useronoff[count];
if ($useronline) {
//mean user online
$user['online'] ="1";
} else {
$user['online'] ="0";
}
switch ($user['online']) {
case 0:
$user['online'] = "<img src=images/statusicon/user_offline.gif alt=offline>";
break;
case 1:
$user['online'] = "<img src=images/statusicon/user_online.gif alt=online>";
break;
}
MiZ.