Hi, i'm try to do, with trial version phpdocx:
$w = new CreateDocx();
$w->createDocx('w');
$z = new CreateDocxFromTemplate('w.docx');
$z->createDocx('z');
At opening z.docx, Word shows "cannot be opened problems with contents"
Help please.
Hi, i'm try to do, with trial version phpdocx:
$w = new CreateDocx();
$w->createDocx('w');
$z = new CreateDocxFromTemplate('w.docx');
$z->createDocx('z');
At opening z.docx, Word shows "cannot be opened problems with contents"
Help please.
Hello,
You need to add one content at least when you create the document. We recommend you to test and check the included examples.
Regards.
$w = new CreateDocx();
$w->addText('test');
$w->createDocx('w');
$z = new CreateDocxFromTemplate('w.docx');
$z->addText('test2');
$z->createDocx('z');
This way couse same error when open z.docx (
Hello,
Sorry but as you're using the trial package and it can't be debugged we don't know what could be wrong with your script.
We recommend you to test the included examples. For further support, after you have purchased a license we can connect to your server to check and solve your scripts (or any other PHP config error).
Regards.