Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 !!

share|improve this question

1 Answer

I think that

$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);

prints or hides the header and footer globally so if you do

$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);     
$pdf->AddPage();

// Page two and on ..

$pdf->SetPrintHeader(true);
$pdf->SetPrintFooter(true);   

You are just telling TCPDF to print the header and footer (The last two statements).

What you should do is, in the header and footer function, print things conditionally based on the page you are in. Something like (not tested, i haven't my PHP IDE right now)

function Header(){
   $pageN = PageNo();
   if($pageN % 2 === 0){
      //if page is 2/4/6... don't print anything
       return;
    }else{
       //do your stuff  

}
share|improve this answer
Thanks Nicola, yes what you say is completely right. It's a global instruction so the last value is taken into account. Problem is with page numbers is that my first page is optional, so i may not always be page 0. Is there a way to give a name to the page ? – user1099862 Dec 15 '11 at 14:49
1  
What do you mean with the first page is optional?In any cas i forgot two = in my code...in any case i think that you must find a logic to understand the page you are in and then decide whether to print the header or not – Nicola Peluchetti Dec 15 '11 at 14:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.