"; echo ""; echo ""; echo ""; } else { include "./html2fpdf/html2fpdf.php"; //overwrites the orginal faulty header method class PDF extends HTML2FPDF { function Header($test ="") { //$this->Image('./html2pdf/this.gif',50,5,100); //$this->text = ""; //$this->SetFont( 'Arial', 'B', 8); //$this->Cell(166); //$this->Cell(0, 0,$this->text, '', 1); //$this->Cell(0, 2,'', 'B', 1); //$this->Ln(5); } } $page = "

I like big buts in the {$_POST['sel']}

"; //print pdf $pdf = new PDF(); $pdf-> AddPage(); $pdf->UseCSS(); $pdf->UseTableHeader(); $pdf-> DisplayPreferences('HideWindowUi'); $pdf-> WriteHTML($page); $pdf-> Output("test.pdf",'D'); exit; } ?>