Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Web form security

by premchai21 (Curate)
on Jul 30, 2001 at 18:36 UTC ( [id://100882]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
       $param{$name} = $q->param($name);
       print "$name: $param{$name}", $q->br;
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $q = CGI->new;
    my %params = map { $_, $q->param($_) } ($q->param);
    print join $q->br, map { "$_: $params{$_}" } ($q->param);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://100882]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-04-18 02:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found