Hey you all,
I'm currently working on a plugin, but I wonder: how do I change the online status of a user? using a SQL query (update).
My SQL query so far;
edit: noticed that it shall go in the plugin development, please move the thread Staff.
I'm currently working on a plugin, but I wonder: how do I change the online status of a user? using a SQL query (update).
My SQL query so far;
edit: noticed that it shall go in the plugin development, please move the thread Staff.
$uid = $mybb->user["uid"];
$timesearch = TIME_NOW - $mybb->settings['wolcutoffmins']*60;
$db->query(" UPDATE ".TABLE_PREFIX."sessions SET `uid`='$uid', `time`={$timesearch}, `location`='New Location!' ");