MyBB Community Forums

Full Version: How to extract email ids from database
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Im an happy user of mybb.

I wanna know how to extract only email id of all the members and awaiting activation member from my database. what should I do to get it?

Help me out@ thank in advance. waiting over here.
samsunghere Wrote:Hello,

Im an happy user of mybb.

I wanna know how to extract only email id of all the members and awaiting activation member from my database. what should I do to get it?

Help me out@ thank in advance. waiting over here.

Run this query in phpmyadmin:

SELECT `email` FROM `mybb_users`;
what about to extract the password of a particular user.

I tried
SELECT `password` FROM `mybb_users`;

but im getting all some thing like this
17cd157a121f6e0b88519ad

How to extract it. please help me out?
Passwords are not meant to be extracted from the database, they are encrypted. Smile
ok. thank you.