PHP Code:
$users_inline = ""; //establish variable. This is what you will call to retrieve the names.
$results = $db->query_read("SELECT username FROM " . TABLE_PREFIX . "user WHERE usergroupid = 2 ORDER BY username");
while ($selected_users = $db->fetch_array($results)){
$users_inline .= $selected_users['username'] . "<br>"; // the '.=' means it'll add to the variable, rather than replace it.
}
Hope that helps.