This is a discussion on html table to PDF within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi! I want to convert a html table(beginning with <table>) from my site into a pdf file. ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
|
|
|||
|
You want to programatically create a PDF, and publish HTML to it?
There is a PDF library available for PHP - check the following; http://uk2.php.net/manual/en/ref.pdf.php It won't parse HTML though. A good solution might be to programatically generate your table in HTML - then you can use the same data source to programatically make the PDF... Just a thought. |