Example of the table template (realized with divs)
Example of the data for the table:
Array
(
[0] => Array
(
[0] => Row1.1
)
[1] => Array
(
[0] => Row2.1
[1] => Row2.2
)
[2] => Array
(
[0] => Row3.1
[1] => Row3.2 with long long long text
[2] => Row3.3
)
[3] => Array
(
[0] => Row4.1
[1] => Row4.2 with long long long text
[2] => Row4.3
[3] => Row4.4
)
)
Output:
Row3.1
Row3.2 wit...
Row3.3
Row4.1
Row4.2 wit...
Row4.3
Row4.4
Explanation of the structure of the table's template (schema with all necessary php-code)