Im having this problem with the TBS.
I have a array that show the following result.
array(32) { [21]=> array(9) { [0]=> string(8) "23:10:12" [1]=> string(8) "23:16:12" [2]=> string(8) "23:21:12" [3]=> string(8) "23:27:12" [4]=> string(8) "23:33:12" [5]=> string(8) "23:40:13" [6]=> string(8) "23:45:13" [7]=> string(8) "23:51:12" [8]=> string(8) "23:56:12" }
For example, I need to show in a column the results of $dates_times[21][0] to $dates_times[21][9];
What it the code in the HTML to do this?
Im using the following TBS sintax in PHP:
$TBS->MergeBlock('blk2',$dates_times);
|
And in the HTML:
<td>[blk2.day.#;block=tr;frm='hh:nn']</td>
|
But im getting an error. Please, any one can help me?