I have successfully created 3 Breezing Forms forms on a Joomla site and would like to know the best way to use the form data saved to the database to fill a PDF form, then be emailed to a specific address as a final step when the form is completed by the user. I'm aware that with Breezing Forms you can export form data to PDF, but the my forms are too complex in layout for the format of that type of export. What I need is the form data to populate a formatted PDF form.
Here is an example of one of the forms and the PDF it should fill: Form: http://www.nutriworkscnc.com/Development/index.php?option=com_breezingforms&view=form&Itemid=640 PDF: http://www.nutriworkscnc.com/Development/images/forms/history.pdf
You essentially have two ways to fill the PDF form: client-side and server-side.
For client-side filling, you would create a FDF file with the /F key pointing to the base PDF (some people would call that the Template file). Then you would send the FDF to the user and a savvy PDF viewer would then load the base PDF and fill it.
If you have to serve dumb PDF viewers, you'd have to rely on server-side filling. For that, there are applications, such as FDFMerge by Appligent, or libraries, such as iText. You then will have to prepare the data in an appropriate way for your server-side filling tool.