php - Is it possible to Generate a Pdf Design by using Fpdf -


enter image description herei 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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

How can I fetch data from a web server in an android application? -

jquery - How can I dynamically add a browser tab? -