Blum has asked for the wisdom of the Perl Monks concerning the following question:
----- program 2: paser the submitted data ---print "<FORM METHOD='post' ACTION='RecieverURL'>"; print "<INPUT SIZE=20 TYPE='textbox' NAME='name' VALUE=''>"; print "<INPUT SIZE=20 TYPE='password' NAME='passwd' VALUE='' >"; print "<INPUT TYPE='submit' VALUE='submit'>"; print "</FORM>";
--------------------------------------------use vars qw(%in); ReadParse(); my $name = $in{name}; my $passwd = $in{passwd}; print "name = $name"; print "passwd = $passwd";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Form over HTTPS
by Anonymous Monk on Oct 30, 2014 at 10:07 UTC | |
|
Re: Form over HTTPS
by perlron (Pilgrim) on Oct 30, 2014 at 09:53 UTC | |
by Blum (Initiate) on Oct 30, 2014 at 19:45 UTC | |
by perlron (Pilgrim) on Oct 30, 2014 at 20:21 UTC | |
|
Re: Form over HTTPS
by noxxi (Pilgrim) on Oct 30, 2014 at 19:37 UTC | |
by Blum (Initiate) on Oct 30, 2014 at 19:49 UTC |