$sql = 'SELECT *
FROM Recipies
WHERE 1';
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)){
$RItemName = $rowї'ItemName'];
$ROutPutX = $rowї'OutPut'];
...
When I echo $ROutPutX; it puts out nothing. I get no error, and I have DOZENS of other columns in this table that display 100% perfect (including ItemName). I SWEAR that colum exists in my databse (at least, that's what MySQL-Front and phpMyAdmin both tell me). And I SWEAR that the whole colum has a default value of 1. Sometimes it's a value of 4, or 12... but in this querry it's acting like the column is filled with NOTHING.
tim you kinda got that twisted around.. fetch_assoc returns an associative array.. (named entries) .. it's fetch_row that returns only numbered (offset) arrays.
But when I do an echo RIGHT after that print_r command, it doesn't show ANY value for the output! I'm stumped. Here's my code now (with suggestions incorporated):