I've played with the fdf functions, and I can fill out a PDF form no problem. I can also use the PDF functions to create a simple ("Hello World") PDF on-the-fly.
Here's my problem:
I need to generate printable A/V requests from a database. Today I may have 10 requests, tomorrow may be 30 requests, etc. I have a PDF form that is 2 requests per page.
What is my best option to generate my requests? Generating the PDF on the fly looks painful, since the form is rather complicated. Using the FDF stuff and the PDF form only gets me 2 requests - is there a way to keep appending copies of the original to itself? I've been over the documentation for both FDF and PDF, and the only thing that seems to let me add pages is the PDF functions, but then I have to do the creation/layout in code.
Help?