I am using this code to show the users that are administrator:
<?php
while($write = mysql_fetch_array(mysql_query("SELECT * from users WHERE level >1"))){
echo ''.$write['username'].'';
}
?>
But the page stays loading forever! What is wrong with it?