![]() |
|
Storing data in the MyBB Database - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: Storing data in the MyBB Database (/Thread-Storing-data-in-the-MyBB-Database) |
Storing data in the MyBB Database - Travis - 07-22-2015 I haven't really seen this anywhere, except in a plugin or something. 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. RE: Storing data in the MyBB Database - Jasper - 07-22-2015 Easy. Hope that someone finds this helpful. Thanks for sharing. :yus: RE: Storing data in the MyBB Database - Kotomi - 08-18-2015 I knew how to do this. It's very easy and short ![]() Thanks for helping others though ^,^ RE: Storing data in the MyBB Database - Andrew_mybb_import13657 - 08-19-2015 wow so helpful... lmfao RE: Storing data in the MyBB Database - Oxyrus - 08-19-2015 http://www.w3schools.com/php/php_mysql_insert.asp there you can learn more about it RE: Storing data in the MyBB Database - Man - 08-20-2015 This helped me out... a lot. Thanks, @Travis. RE: Storing data in the MyBB Database - Travis - 08-21-2015 (08-20-2015, 06:21 PM)Man Wrote: This helped me out... a lot. Thanks, @Travis. You are very very welcome man |