Even better:
<?php $query = “SELECT ID, user_nickname from $tableusers where user_nickname <> ‘admin’ ORDER BY user_nickname”;
$result =mysql_query($query);
while ($data = mysql_fetch_row($result)) {
echo “$data[1]
\n”;
} ?>
Maybe someone finds this useful.
(the &92; in the last row is supposed to be a backslash in the source-code