MyBB Community Forums

Full Version: Get all user's email
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to get all the email from the database of mybb. How can I change this code for mybb?

$sql = 'SELECT email FROM users';
$result = mysql_query($sql);

foreach($result as $results){
 echo $results."<br />";
}

What is the right synthax for this, so I can get all the emails?
(2016-03-17, 07:32 AM)mmadhankumar Wrote: [ -> ]check related thread: http://community.mybb.com/thread-105399.html

Oops! I didn't see that! Thank you.