MyBB Community Forums

Full Version: HWID
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey there,

I am working right now on my login system,but I was stuck with HWID
I need to get it automatically when someone register in my forum,so I had added a new column in "mybb_users",but didn't know how to get HWID into it when someone register....

any help will be appreciated
Thanks Smile
If I understood your question right and you're talking about the users Hardware ID.

PHP alone cannot read the users hardware id, you will have to do it in a different manner or use a 3rd party tool to acquire the HWID.

PHP is server side only.
Use this hook, to do something once a member registers (of course, you'd need to create a new function called 'reg_end_hwid')
$plugins->add_hook('member_do_register_end', 'reg_end_hwid');