Can anybody recommend a PHP to PDF convertor/generator script. I want to create a pdf document of a php file whenever I create/modify the file.
Thanks in advance.
__________________
There is a very fine line between "hobby" and "mental illness."
Sorry on the server.
I have acar sales website and wat to generate a downloadable pdf of each vehicle when they are added (rather than generate everytime the download is requested). I think I would prefer to have a seperate layout for the pdf to generate from as it would be neater than the webpage but looking for a simple solution.
__________________
There is a very fine line between "hobby" and "mental illness."
So far I've found FPDF to be the best to implement from within PHP. Takes a while to format your pages with headers/footers/content and paging your data but for example if you're producing reports and you use a class that extends from FPDF it's easy peasy from there on - for each report you can just customise the content section/title etc and use parameters as you wish.