php - Is it possible to Generate a Pdf Design by using Fpdf -
i want generate pdf in php using fdpf. can draw table in fpdf. want design table in image given using fpdf.is possible. new fpdf please me. want above table design. in advance
you should download addon called pdf_mc_table or copy here: http://www.fpdf.de/downloads/addons/3/
$pdf = new pdf_mc_table(); $pdf->row(array("this\nis test","with multi\ncell")); $pdf->output();
Comments
Post a Comment