My question is I'm trying to output table rows with three items in each row instead of outputting items row by row. I know I need a "for" statement to output this, I'm just not sure how to put that together.
I know this is easy, so I'm guessing one of you guys in here can help with this.
Here's the code I'm using:
while ($row = mysql_fetch_array($result)) {
$name= ($rowh['title']);
$description = ($rowh['author']);
$price = ($rowh['date']);
$item .= "<td>$name<p>$description<p>$price</td>";
Thanks in advance!
Ian