I have an extremely simple question, I have a table
while($row=mysql_fetch_array($result)){
echo "</td><td>";
echo $row['partnumber'];
echo "</td><td>";
echo $row['quantity'];
echo "</td><td>";
}
echo "</table>";
It displays the data, however I would like to have the part numbers displayed on top of each other with the quantity to the right, how can I accomplish this? I’ve played around with this for awhile and haven’t found the solution or been able to correct it myself. I apologize in advance for asking a question of this caliber.
Enclose your rows within
<tr>