Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: HTML Decoding

by abstracts (Hermit)
on Mar 17, 2002 at 11:33 UTC ( [id://152311]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
           FETCHING THE PARAMETER LIST AS A HASH:
    
    ...
    
               use CGI ':cgi-lib';
               $params = Vars;
    
  2. or download this
    use CGI qw/Vars/;
    my %params = Vars;
    # now you're good to go :-)
    
  3. or download this
    use CGI;
    my $q = new CGI($ENV{QUERY_STRING});
    my %params = $q->Vars();
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-26 07:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found