Hello,
I'm trying to make a pagebreak like that :
$docx = new CreateDocx();
$docx->enableCompatibilityMode();
$docx->addTemplate($chemin_tamplate);
$docx->addText("before");
$docx->addBreak(array('type' => 'page'));
$docx->addText("after");
$docx->createDocxAndDownload($name);
It doesn't work...
Do you konw why ?