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

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

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -