php/mysql SELECT statement not working
I have set up a table in mysql and then wrote a script to show all the entries to the table. I'm using a while loop to get the info assign it to an array then echo the results. Here is the code:
<?php
$conn = mysql_connect ("localhost", "me", "456");
mysql_select_db("Login", $conn);
$sql = "Select * FROM Users";
$result = mysql_query($sql, $conn) or die(mysqlerror());
while ($newarray = mysql_fetch_array($result)) {
$name = $newArray['userName'];
$pass = $newArray['passWord'];
echo "Name $name<br>";
echo "Password $pass<br>";
}
?>
When I run the script it prints "Name Password" the correct number of times (once for each record) but omits the values for $name and $pass. I've checked and double checked my column names to make sure they are spelled right with the right case and they are good.
Can anyone help me with this, I'm sure it's just a stupid little error but I'm stuck. Thanks in advance
|