I created a form with Acrobat Pro. It is set to submit data via http "get". I can send it just fine from Acrobat, but not Reader. With Reader the server does not recieve any data. I first tried to create a form that sent via mailto, but I had problems with computers that did not have an email client setup to work with Adobe. So then I read it was best to send it to a web server. Now after many hours of work I got it working great with Acrobat, but not with Reader. Any suggestions?
this.submitForm({
cURL:"http://mysite.com/acceptPDF.php",
bGet:true,
aFields: aSubmitFields,
cSubmitAs: "HTML"
});
In the php
I have die(print_r($_REQUEST));
With Reader I just get some strange pared keys and values I believe are cookie values.