> I have seen quite a number of posts related to -post_data and its > uses. However, I fail to see a mention of how to submit a form having > a textarea input field.
Lynx does nothing special. You need to follow the rules of the protocol. > Is there something that I can do to format the input data such that > lynx can pass it on correctly to the server? A sample form data that I > would like to submit is shown below. You need to URL Encode (use %xx) in the same way as would be done in form data, sent with the GET method, in the URL itself. > > $ cat file.txt > Name=Soumitra > &Address=House no 000, > PO + Vill: My village; > Some country Name=Soumitra&Address=House+no+000,%0d%0aPO+%2b+Vill%3a+My+village;%0d%0aSome+country I'm not sure that you need to encode the ":", but if you do, you may need to encode the ";". _______________________________________________ Lynx-dev mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/lynx-dev
