Choose the version that better suits your needs
Click here
Do you have special needs?
You may ask here for a quote
Do you need technical support?
You may obtain it here
This method adds an existing DOCX into your Word document.
$pathDOCX
require_once 'classes/CreateDocx.inc'; $docx = new CreateDocx(); $docx->addDOCX('../files/Text.docx'); $docx->createDocx('example_docx');
I am trying to loop through a list of individual documents so that I can have a multi-page document. However, the only page that shows up in my final document is that last one that I add. How do you make phpdocx create a multi-page document?
One Response
I am trying to loop through a list of individual documents so that I can have a multi-page document. However, the only page that shows up in my final document is that last one that I add. How do you make phpdocx create a multi-page document?