Posted by Bob Bedford on 10/25/17 11:34
I do probably need a good coffee, but I can't find out a simple way to do
so.
Let's say I want to create a table using a number I receive.
For every number, I must have a table with maximum 5 columns.
Example:
10 will gives 2 rows of 5 columns
12 will gives 2 rows of 5 columns and a row of 2 columns.
.....
The problem is that I've to keep the value of every cell like this for 12
1 2 3 4 5
6 7 8 9 10
11 12
How to do so ?
I've done this so far:
$columns = 10;
$lines = $columns / 5;
for($K=0;$K<=($lines+1);$K++)
<?php for($K=0;$K<=($lines+1);$K++){?>
<tr>
<?php
for($I=1;$I<=($columns-($K*5));$I++)
echo('<td align="center">Colonne '.($K*5+$I).'</td>');
?>
</tr>
But It doesn't work properly. I can't figure out a simple way.
Thanks for helping.
Bob
[Back to original message]
|