Is there a way to have a different header logo for the 1st page in a document and different for the 2nd page?
I thought that changing the header data between adding page
The following worked for me,
class MYPDF extends TCPDF{ function header1(){ //print whatever the header 1 is } function Header2(){ if($this->page==1){ //print header 1 and whatever the header 2 is }else{ //print just header 2 } } }