Hi,
Can anyone help me with this - I have a database of people, that I want to
print into an HTML table - how can I make the table wrap into an equal
number of rows.
i.e. if there are 4 entries, a 2x2 table, 6 a 2x3, 8 a 2x4, 9 a 3x3, etc.
At the moment, I have something like:
$rows=mysql_num_rows($result);
$i=1;
while ($array = mysql_fetch_array($result)) {
print ("<td
align=\"center\">".$array["Image"]."><br>".$array["Name"]."</td>\n");
if (is_int($rows / $i)) {
print ("</tr>\n<tr>");
}
$i++;
}
Thanks,
Ian.
--
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]