Home › Forums › Back End › display 3 results › Re: display 3 results
September 27, 2011 at 5:11 pm
#88123
Member
thanx all i found this and works with me
$i = 0;
while($row = mysql_fetch_assoc($rs)){
if($i % 3 == 0){
echo "
"
}
echo $row . " - " . $row . " - " . $row . "
";
$i++;
}