$docx = new CreateDocx();
$docx->addTemplate('doc_gen/exclusivity_template_subs.docx');
$docx->addTemplateVariable('TITLE', "the title");
$docx->addTemplateVariable('REQ', "123 - 4567");
$docx->createDocx("doc_gen/subs/TEST_A");
$res_docx = new CreateDocx();
$res_docx->addTemplate('doc_gen/resume_template_subs.docx');
$res_docx->addTemplateVariable('TITLE', "another title");
$res_docx->addTemplateVariable('REQ', "456-2344");
$res_docx->createDocx("doc_gen/subs/TEST_B");
$docx = new CreateDocx();
$docx->addTemplate('doc_gen/position_template_subs.docx');
$docx->addTemplateVariable('TITLE', "title again");
$docx->addTemplateVariable('DEADLINE_DATE', "the date");
$docx->addTemplateVariable('NUM_POSITIONS', "23");
$docx->addTemplateVariable('START_DATE', "12-23-22");
$docx->addTemplateVariable('END_DATE', "01-31-11");
$docx->addTemplateVariable('REQ_NUMBER', "12");
$docx->addTemplateVariable('MAX_RATE', "$"."130000");
$docx->addTemplateVariable('short_description', "This is the short description");
$docx->addTemplateVariable('long_description', "This is the long one",'html');
$docx->createDocx("doc_gen/subs/TEST_C");