Hello, I searched on Google and in the forum archive for the answer and could not find it.
Here is my code for the display:
while (($info = mysql_fetch_array($adminGetUser)) && ($info['admin'] != 'admin'))
{
echo $info['email']."<br>";
}
?>
The first row does not have 'admin' in its row so that shouldn't be a problem but just to make sure I took it off to test it and it still did not display the first row in the database.
Is there a work around or am I doing something wrong? Should I add a "filler row" every time I create a table?
Thanks for y'alls help.