Hello,
I have a problem. Here is my code :
foreach($tab as $arr) {
echo '<tr>';
foreach($arr as $ligne) {
echo '<td>' . $ligne . '</td>';
}
echo '</tr>';
} |
$tab is result to mysql query as :
Array ( [0] => Array ( [0] => 1 [1] => firms [2] => Id [3] => Name ) [1] => Array ( [0] => 2 [1] => users [2] => Id [3] => LastName ) )
I can't to make this with template.
How make this? Auto generate columns and row with TBS template.
Thank!