COL 2 - ROW 2 - COLSPAN 2 text line text line text line text line
COL 3 - ROW 2
COL 3 - ROW 3
EOD;
$pdf->writeHTML($tbl, true, false, false, false, '');
// -----------------------------------------------------------------------------
// At medium thickness, which is what you get with only one
// setting for style, everything looks the same.
// Included just for completeness.
$tbl = <<
COL 1 - ROW 1 COLSPAN 3
COL 2 - ROW 1
COL 3 - ROW 1
COL 2 - ROW 2 - COLSPAN 2 text line text line text line text line
COL 3 - ROW 2
COL 3 - ROW 3
EOD;
$pdf->writeHTML($tbl, true, false, false, false, '');
// -----------------------------------------------------------------------------
//Close and output PDF document
$pdf->Output('example_067.pdf', 'I');
//============================================================+
// END OF FILE
//============================================================+