Jump to the post that solved this thread.
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Solved: 11 Years, 1 Week ago Echo Users ?
#1
Solved: 11 Years, 1 Week ago
Guys how to echo all the users in the DB?
Thanks very much just nailed it with my supreme intelligence Smile
#2
Solved: 11 Years, 1 Week ago
<?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 />";
}
?>
No longer involved in the MyBB project.
#3
Solved: 11 Years, 1 Week ago
Thank buddy I did the same thing Smile
Jump to the post that solved this thread.


Forum Jump:


Users browsing this thread: 3 Guest(s)