ok, so lets say you have a large result set and you want the record to display 3 in a row and not one per row.
is this possible?
because you cant say
$show = "<table>"
while ($row = mysql_fetch_array) {
$show .= "<tr><td>Name:</td><td>$row[name]</td>
<td>Surname:</td><tr>$row[surname]</td>
<td>Name:</td><td>$row[name]</td>
<td>Surname:</td></tr>
}
$show .= "</table>"
how do you increment the name and surname fields while still looping throught the current one?!
is this possible?