I am using this plugin
http://mods.mybb.com/download/online-today-1.2.2
the below part is query
$queries[] = $db->simple_select(
"users u LEFT JOIN ".TABLE_PREFIX."sessions s ON (u.uid=s.uid)",
"s.sid, s.ip, s.time, s.location, u.uid, u.username, u.invisible, u.usergroup, u.displaygroup",
"u.lastactive > $timesearch ORDER BY u.username ASC, s.time DESC"
);
$queries[] = $db->simple_select(
"sessions s LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid)",
"s.sid, s.ip, s.uid, s.time, s.location, u.username, u.invisible, u.usergroup, u.displaygroup",
"s.time>'$timesearch' ORDER BY u.username ASC, s.time DESC"
);
Now i want to modify this query in order to fetch only users which has greater than 0 post count. So at least 1 post and above
thank you
php, mybb
Try this code:
I just added an additional
WHEREclause that checks thepostnumfield to make sure it’s greater than 0.