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
my solution, with just a condition
function Header(){ if($this->page==1){ $html = ''; $this->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); }else{ $html = ''; $this->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); } }