if i have a database column called "blue", how would i make the following work...
$color = 'blue';
while ($row = mysql_fetch_assoc($result)) {
echo $row[$color].'<br />';
}
$row[$color] doesnt work...and for what i'm trying to do i cant use $row['blue']...i'm guessing there is a way to do this plz help! =)