The libraries and frameworks mentioned here are good, but if all you want to do is fill in a form and flatten it, I recommend the command line tool called pdftk (PDF Toolkit).

See [http://www.accesspdf.com/pdftk/][1]

You can call the command line from php, and the command is

pdftk *formfile.pdf* fill_form *fieldinfo.fdf* output *outputfile.pdf* flatten

You will need to find the format of an FDF file in order to generate the info to fill in the fields. Here's a good link for that:

[http://www.tgreer.com/fdfServe.html][2]

--   
bmb


  [1]: http://www.accesspdf.com/pdftk/
  [2]: http://www.tgreer.com/fdfServe.html