In which case, you could change the query. Under the if(!logged_in) part, after the first query:
$names = mysql_query("SELECT name FROM members WHERE id != 'president'");
while ($info = mysql_fetch array($names))
{
// echo names
}
//continue on with elseif
That should do the trick.
Last edited by Demiloy; Aug 7th, 2008 at 11:16 pm.