When I try :
$docx = new CreateDocx();
$wml = file_get_contents('contract.html');
$docx->embedHTML($wml);
$docx->addFooter('2012', array(
'pager' => 'true',
));
$time = time();
$output = 'uploads/'.$time;
$docx->createDocx($output);
$pdf = new TransformDoc();
$pdf->setStrFile($output.'.docx');
$pdf->generatePDF($output.'.pdf');
I have correctly the page numbers on the .docx but not in the .pdf
If anyone can help with this I would really appreciate it.