Quote:
Originally Posted by SirAdrian
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>';
|
Ahhhhh, I see what you mean now, thank you very much. Never fails you come to my rescue on things. LOL
I'll have to give it a try tomorrow, heading out for a night on the town with the wife.
--------------- Added [DATE]1258848871[/DATE] at [TIME]1258848871[/TIME] ---------------
BTW, I figured out that I was using wrong code in the template:
But once I changed to:
It all worked out, the code appearing at top went away so now I just need to convert to Adrian's suggestion and it will be good to go.