I cannot figure out, how to get my code to create a new html column for results, in my table, in a while ($row = mysql_fetch_array($result)) { - when the results returned reach 10, I want there to be a new table HTML column to be created in the same HTML table, with PHP.
How can I do this?
I need examples, I'm novice
while ($row = mysql_fetch_array
($result, MYSQL_ASSOC)) {
$row_color = ($row_count % 2) ? $color1 : $color2;
echo '<tr><td align="left" bgcolor=' . $row_color . '> <b>' . $row['manufacturer'] . '</b>: <a href=view_inventory.php?mdl_key=' . $row['mdl_key'] . '&man_key=' . $row['man_key'] . '&cls_key=' . $row['cls_key'] . '&sub_cls_key=' . $row['sub_cls_key'] . '> ' . $row['model'] . '</a></b></td></tr>';
$row_count++;
}
mysql_queryinterface in new applications. You should be using PDO ormysqli. If you're a novice, you're doing yourself an enormous disservice to be learning an obsolete method of using MySQL. – tadman Nov 1 '12 at 16:30$i=0;, then increment it in your while loop, and check its value inside the same loop to create a new html element (whatever you like). – inhan Nov 1 '12 at 16:35