Storing data in the MyBB Database 07-22-2015, 06:28 PM
#1
I haven't really seen this anywhere, except in a plugin or something.
Make sure you add global $db;
Not really much to it. Hope this helps someone out.
Make sure you add global $db;
PHP Code:
$ip= getenv('REMOTE_ADDR');
$ip = ip2long($ip);
$log = array(
'ip' Â => Â $ip,
'Column' => Data to store
);
$db->insert_query('table', $log);
Not really much to it. Hope this helps someone out.
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)


