Hmmmmm,
TBS merges you array this way:
first record = array(1=>HSS01,2=>LSF01,3=ALS01,4=>ALS01)
second record = array(1=>AUT01,2=>SF001,3=>IUAL1,4=>IUAL1)
Key names of records cant' be read when records are arrays.
If you can, it would be better to structure your array another way.
Like:
$table = array(
array('device'=>'HSS01','refnam'=>'AUTO1')
,array('device'=>'LSF01','refnam'=>'SF001')
,...
);
|
Or you can do the following:
PHP:
$device = $table['device'];
$refnam = $table['device'];
$dataTBS->MergeBlock('blk1',$device) ;
|
HTML:
[blk1;block=begin]
<tr>
<td>[blk1.val]</td>
<td class="special">[var.refnam.[blk1.key]]</td>
</TR>
[blk1;block=end]
|