while ($topic = mysql_fetch_assoc ($result)); {
echo "{$topic["overtag "]} ";
}
The results from my while loop are displayed as such: apples orange banana
I want to be able to take all those results and put them in a variable and make it look like this: $fruits = apples orange banana
How would I be able to do this?