I want to place the footer section on every page of my document except the first one.
I created my custom footer by extending the TCPDF class and overriding its footer method.
Then based on the documentation and using below example I understand I should use SetPrintHeader and SetPrintFooter methods:
http://www.tcpdf.org/examples/example_002.phps
// Page one
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);
$pdf->AddPage();
// Page two and on ..
$pdf->SetPrintHeader(true);
$pdf->SetPrintFooter(true);
$pdf->AddPage();
However, the above does not prevent the footer/header from being printed at all!
What am i doing wrong here ?
Thanks a million in advance !!