Conversion to a Versatile Document

For regular people who use the computer, certain things that were complicated before have been simplified enough today. What is there to do sometimes is to simply do some clicks (as per instructions) to finish the task. For our example, there might be a need for the html form to pdf file , specifically for printing. One solution for this would be to get an HTML form and have it printed out into a document with the appropriate field pre-populated (filled out). If there is a need for signatures, then it has to be printed. Options If the paper form is available, you can scan it in as an image with nothing filled out yet. Have the HTML form data printed out using CSS for positioning and the blank scanned form as background image. Another simple option is to automatically generate the PDF with the data. There is also a php library for converting HTML to PFDF documents, http://code.google.com/p/dompdf/ and there are many demos available on the site....