Yes exactly, I want to list each "type" for a given "food" (food being fruit in this case), but most importantly, I want to assign each "type" a variable on its own.
What I mean is if it's possible to have:
$banana = ".$row['type']." (first result)
$apple = ".$row['type']." (second result)
By echoing only ".$row['type'].", I get both results at the same time, but I want to assign them separate variables (since I want to be able to use them at different places due to layout issues).
EDIT: I succeeded in exploding it to two bits. Thanks! Unless there's an easier way, I'll use this for now.
Also, does violating the first normal form have any real consequences?