News

Insert an external docx within your Word document with PHPdocx

  • Jun 03, 2011

This information is outdated, please, refer to the addDOCX documentation for up to date info. This cool feature is available since PHPdocx 2.3. You may use this method to add large chunks of conten...

Read More

Insert a RTF into a docx document using PHPDocX

  • Jun 03, 2011

This information is outdated, please, refer to the addRTF documentation for up to date info. In the same way that we can insert a docx document into another docx document, we can also insert a RTF do...

Read More

Two charts in a docx document with PHPdocx

  • May 04, 2011

In this example we add a couple of charts inside a docx documents. The process for adding a chart in PHPdocx is simple: first you need to define the labels and info, next you define how will be the ch...

Read More

Nested Lists in PHPdocx

  • May 04, 2011

If you need to create a nested list (a list inside a list) is not complicated, just take a look at this code: require_once '../../classes/CreateDocx.inc'; $docx = new CreateDocx(); // Par...

Read More

Creating a Table of Contents in a docx document with PHPdocx

  • May 04, 2011

This information is outdated, please, refer to the addTableContents documentation for up to date info. A table of contents, or TOC, is usually an order list of chapters and subchapters that simplify...

Read More