s.$ISEVARONE$=s.$ISPROPONE$="hockey stick";
s.events="$ISEVENTONE$";
I am then using the following code to replace these values:
[code]$docx = new CreateDocx();
$docx->addTemplate('test.docx');
$docx->addTemplateVariable('ISEVARONE','eVar1');
$docx->addTemplateVariable('ISPROPONE','prop1');
$docx->addTemplateVariable('ISEVENTONE','event1');
$docx->createDocx("test2");[/code]
When I do this, it doesn't change a thing in the file. I can't figure out what it is. Has anyone seen the same issues, and if so, do you have a work around or resolution? Any help would be great! Thanks!