Thanks for the response Letherback.
Your suggestion does make all the items into one array, but I am not savy enough to figure out how to break them back apart into single "displayable" items.
What I have is 6 records in my database, and want to display 6 items, each on a seperate line.
I tried to use this technique, which I have seen before:
echo "<h2>Video</h2>";
$sql2 = "Select * from tblProduct Where prodType='Video' ORDER BY prodName ASC";
$result2 = mysql_query($sql2);
while($row = mysql_fetch_assoc($result2))
$VideoName .= $row['prodName'];{
echo $VideoName[$i];
echo "<br><br";
$i++;
}
..to break out each element of the arrya, but that did not produce what I am looking for.
Eventually, here is what I am trying to accomplish...
Apples
Bananas
Pears
etc.
Thanks for the logic/coding.
Don