Forum


Replies: 7   Views: 3400
Format table
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 gerix  · 11-04-2013 - 12:13

Why I do not work? Please advice: (
[code]
<?php
require_once '../../classes/CreateDocx.inc';
$docx = new CreateDocx();

$bold = $docx->addText('Bold', array('b' => 'single'));

$tab = array(
array($bold, Normal),
array($bold, Normal)
);

$docx->addTable($tab);
$docx->createDocxAndDownload('table');

[/code]