hi every body
i want to show in each row 4 items from my db and go to another row (++row)
in each row 4 items until end of items of db instead of in each row 1 item
please help me
here is the code
<?php
$sql=mysql_query("SELECT * FROM `products` where tf=1 and star='7' ORDER BY `id` DESC");
$inc = 0;
while($r=mysql_fetch_array($sql)){
$id=$r['id'];
?>
<div style="width:152px; height:205px;">
<?php echo $id; ?>
</div>
<?php } ?>