Ok so I followed this tutorial to get the PDF submitting to HTML but it seems like a backwards way to do it.

http://koivi.com/fill-pdf-form-fields/tutorial.php

I would like to submit the data as XML so I can then easily map it to a model.

The Adobe documentation is probably the worse I've ever seen. I followed the submit button documentation but that doesn't tell me anything. What exactly is getting passed to the server?

enter image description here

What POST parameter am I looking for? What name? What does it look like. These questions seem basic but I don't see it anywhere. Thanks.

link|improve this question

1  
You can view what's being sent to the server with var_dump($_REQUEST), var_dump(file_get_contents('php://input')) etc... – Marc B Sep 9 '11 at 15:01
feedback

1 Answer

up vote 1 down vote accepted

XFDF format is described here: http://partners.adobe.com/public/developer/en/xml/xfdf_2.0.pdf
The body of the POST request contains the XFDF data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.