Printing data from a web application on preprinted paper
javascript, jquery, mysql, php
Solution
If you want to print all the contents of a webpage as same, you should use php fpdf library.I have developed a website where I needed to print all contents of a form as same.And fpdf was an effective solution. You can get all the supports, downloads and tutorial at http://www.fpdf.org
Problem
Does anybody have experience with printing from a web page? I have some preprinted papers. On those papers there are some checkboxes that have to be checked based on data that has been filled-in via a webform or called from a MySQL database. All of this data is available from a PHP web application. Now I am searching for a solution to print this data on my preprinted documents. So I have to print some crosses on these documents that are located at a specified position. Does anybody have an idea and an example of how to handle this?