You can check this feature in Template_header.php example.
This is the related code:
[code]
$settings = array(
'header' => true
);
$docx->addTemplate('../files/TemplateTable.docx');
$docx->addTemplateVariable(
array(
array(
'NAME' => 'Product A',
'WEIGHT' => '10',
'PRICE' => '5',
),
array(
'NAME' => 'Product B',
'WEIGHT' => '20',
'PRICE' => '30',
),
array(
'NAME' => 'Product C',
'WEIGHT' => '25',
'PRICE' => '7',
),
),
'table',
$settings
);
[/code]
Regards.