The merging document should get:
[list]introduction text
the first part of the table
a page break
the second part of the table [/list]
What I get is:
[list]the first part of the table
empty lines
introduction text
empty lines
a page break
the second part of the table[/list]
I am testing it using the following code:
[code]$newDocx = new DocxUtilities();
$options = array('mergeType' => 0);
$newDocx -> mergeDocx(TEMP_PATH . 'section_4_intro' . EXT, //intro
TEMP_PATH . 'section_4_table' . EXT, //table
TEMP_PATH . 'section_4_merged' . EXT, //final
$options);
[/code]
I tried both mergeType 1 and 0
I can PM the word files if you wish
Thanks