Thank you for your response. Would you be able to tell me exactly what you did to get the output? Did you fill and submit the form on my website? I am still getting nothing back in the query string. | [reply] |
Thank you for your response. Would you be able to tell me exactly what you did to get the output? Did you fill and submit the form on my website? I am still getting nothing back in the query string.
No, I did not visit your form because HideMyAss.com has a bug in their service, whereas they don't fix relative uri form actions, so I just hand-coded a query string (oh snap, i let the secret out)
| [reply] |
Thank you to everyone who has responded to my query.
I have finally figured out why I was not getting output back from my online form. It took me 3 days to realise where the issue lay. Other's might benefit from this, I hope.
I designed my XML form to work with Javascript, and did not consider Perl at that time. As a result, I did not use a "name" attribute in the XML file, and only had the "id" attribute for all the INPUT elements. Perl does not read "id", but reads "name". Of course this resulted in an empty Query String using GET and zero Content Length using POST.
As soon as I added the "name" attribute to my XML, it worked.
If I am wrong and there is some way that Perl CGI reads "id", I stand corrected and that will enhance my knowledge further.
I would also like to say, that I have started using CGI.pm which certainly makes life easier
Irvy
| [reply] |