Hi there. Looking to place the following code in a table. How would I code it??
<?
while ( $row= mysql_fetch_array($getinforesult))
{ extract ($row);
print "<b>$store, $date, $item, $quantity, $enteredby</b> <br>";
print " <tr><td colspan='4'><hr width='40%' align='left' color='#000080'></td></tr>";
}
?>