Forum


Replies: 3   Views: 4356
Merge in trial
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by irxn84  · 10-04-2014 - 10:16

Hi,



is it possible to use merge 2 docx documents in trial version?



PHP Code:



$docxm = new CreateDocx();

$docxm->mergeDOCX('demo_template', 'demo_template1');

$docxm->createDocx('merge')



I got this error:



Fatal error: Call to undefined method CreateDocx::mergeDOCX()


Posted by jorgelj  · 10-04-2014 - 10:56

Hello,



The trial version doesn't include the mergeDocx method. You can use addDOCX to add a DOCX but it use the altChunk tag so it's only compatible with Word.



Regards.


Posted by irxn84  · 10-04-2014 - 11:15

This method works.