I am testing but got below error
DOMDocument::loadXML(): Opening and ending tag mismatch: tc line 1 and p in Entity, line: 1 in C:\wamp\www\classes\CreateDocx.inc on line 4392
Script
require_once('C:\wamp\www\classes\CreateDocx.inc');
$docx = new CreateDocx();
$docx->addTemplate('C:\wamp\www\templates\Form0004test.docx');
$html = '<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>';
$docx->replaceTemplateVariableByHTML('STable', 'block', $html);
$docx->createDocx("../newpro/docprocessed/Kerala Dec_");
what is happend ?