Here's a sample
PHP Code:
$columns = 5;
$width = floor(100 / $columns);
// generate $cells array containing each HTML cell
$cells = array();
while ($row = $db->fetch_array($result)) {
$cells[] = '<td style="width: ' . $width . '%">HTML For the Cell</td>';
}
// pad with empty cells until last row would be full
while (count($prepared) % $columns) {
$prepared[] = '<td style="width: ' . $width . '%"></td>';
}
// group into rows with variable number of columns
$rows = '';
foreach (array_chunk($prepared, $columns) as $row) {
$rows .= '<tr>' . implode(' ', $row) . '</tr>';
}
// done
return '<table border="0" width="100%">' . $rows . '</table>';