Hello,
I make myfooterlike this:
htmlFooter$= "";
$ q= $db-> query("SELECTFROMcontenu_modelliste_modelWHERE id=" $pied_page_id.)
$resultattest=$ q-> fetch();
if ($resultattest!= false&&$resultattest[0]!= "")
{
$htmlFooter=nl2br(base64_decode($resultattest[0]));
$$=text_entete_pied_ou_contenuhtmlFooter;
include '../creerdocument/moi_meme2.php';
$$=htmlFootertext_entete_pied_ou_contenu;
htmlFooterhtmlspecialchars_decode=$($htmlFooter);
$footer= $docx->embedHTML($htmlFooter,array ('rawWordML' => true,'target' => 'defaultFooter'));
$myFooter= $docx->createWordMLFragment(array ($footer));
$docx->addFooter(array ('default'=> $myFooter));
}
I would like toadd numbering
How canI integratethis:
$pager= $docx2->addPageNumber('numerical', array('jc' =>'center', 'rawWordML' =>true));
Can you tell mehowto proceed?
Thank youin advance