Posted by mrquake99 on 04/25/06 21:32
Hi,
I am looking for php tools / scripts with which I can convert php
generated HTML to PDF. I was looking at FPDF and HTML2PDF (based on
FPDF). However, HTML2PDF can not handle nested lists and the output is
wrong. If I generate a PDF from:
<ul>
<li>L1</li>
<li>L2</li>
<ul>
<li>SL1</li>
</ul>
<li>L3</li>
</ul>
the ouput looks like:
- L1
- SL1
- L4
Maybe I did something wrong, but I could not find any error. Does
anybody know free php libraries cabable of handling nested lists?
Thanks a lot,
-- Frank
[Back to original message]
|