I must admit I've never used PHP, but..
Quote:
while ($newarray = mysql_fetch_array($result)) {
|
What is the conditional, and what is the iterator? Assuming that whole thing is the condition, what causes it to move beyond the first array element?
Also, notice
$newarray in the while, and
Quote:
$name = $newArray['userName'];
$pass = $newArray['passWord'];
|