MyBB Community Forums

Full Version: Echo Users ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Guys how to echo all the users in the DB?
Thanks very much just nailed it with my supreme intelligence Smile
<?php
define("IN_MYBB",1);
include("global.php");
$result = $db->query("SELECT * FROM ".TABLE_PREFIX."users");

while ($row = $db->fetch_array($result, MYSQLI_NUM)) {
echo $row['username']."<br />";
}
?>
Thank buddy I did the same thing Smile