Question creating PDF document in Zend Framework
- by deaddancer
I need to take a ZF rendered view and create a PDF that should look pretty much exactly the same, and email it.
The major issue I have right now is getting the HTML created by the view into a string that I can then process with the Zend_PDF::parse method.
The view I need to turn into a PDF is the result of a posted form. I've tried grabbing the contents of ob_get_contents into a string after a successful post, but for some reason its not in there. Should I press on with this angle?
Any help would be greatly appreciated!