News
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 MoreDocx document with a complex table: texts, links and images
- May 04, 2011
This information is outdated, please, refer to the addTable documentation for up to date info. Another complex example: this time we create a document that includes a table with text, hyperlinks and...
Read MoreTwo 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 MoreNested 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 MoreText with different styles in the same paragraph in a docx document with PHPdocx
- May 04, 2011
In a text documents, one paragraph maybe need different format for a phrase, or a complete text. PHPfocx can handle this situation using properties for every different text. require_once('../../c...
Read More