MyBB Community Forums

Full Version: associative array
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to get associative array using mybb database methods?
$query = $db->query("SELECT blah blah");
$result = $db->fetch_array($query);

// or, something like
while($result = $db->fetch_array($query)) {
 // assoc array in $result
}