lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lynx-dev CGI POST parameters bugs


From: CyberPsychotic
Subject: Re: lynx-dev CGI POST parameters bugs
Date: Thu, 15 Jul 1999 12:15:47 +0400 (MSD)

~ 
~ Please configure with --enable-internal-links and recompile lynx.
~ Let us know whether lynx then behaves as you expect (and as it should,
~ in my opinion).
~ 

nope. didn't seem to have it fixed to me. You may give a try to use
following script, to test it:
(see that stdin still would show you previous parameters after you submitted
form once, and then just followed this link).

#!/usr/bin/perl
print <<__EOT__;
Content-type: text/html

<html><head><title>foo</title></head><body>
<PRE>
Envinronment:
__EOT__

while (($key, $val) = each %ENV) {
        print "$key = $val<BR>\n";
}
print "Stdin\n";
print "$_\n" while(<STDIN>);
print <<__EOT__;
<hr> try to submit this form:
<form action=test method=post>
<input type=text name=foo value=bar>
<input type=hidden name=baz value=foo>
<input type=submit name=submit value=submit>
</form>
<hr>
<hr>
<a href=test> or just click the link</a>
</body>
</html>
__EOT__



reply via email to

[Prev in Thread] Current Thread [Next in Thread]