MyBB Community Forums

Full Version: Query to list the email of the users.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi,

Do you know a phpmyAdmin query to list all the emails of the users?

Thanks.
SELECT `email` FROM `mybb_users`;
I also have a php script that will dump them as:
Username email
I can post it tomorrow if you're interested (and its easy to drop the username portion)
(2009-12-05, 02:31 AM)ralgith Wrote: [ -> ]I also have a php script that will dump them as:
Username email
I can post it tomorrow if you're interested (and its easy to drop the username portion)

+1

I will be very Happy with it Rolleyes
And do you have the script?
Sorry, somehow I missed your response of being interested. Here it is:

If you want email only change line 15 from:
print($user['username']." ".$user['email']."\n");

to:
print($user['email']."\n");
You can list all emails with this attachment. Upload it to the MyBB root.
lol, which is the version of my script I uploaded in some other thread and had forgotten about. They're exactly the same except the second one already has the line 15 change applied.
Thanks Dylan Smile
You should actually thank Matt R. He gave me the idea for it with his little 0 post count fix script for mergers
Pages: 1 2