// 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>'; }