Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Using HTML::Template's query method

by tomhukins (Curate)
on Mar 09, 2002 at 20:20 UTC ( [id://150608]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        # Derive the template's filename from all characters in the
        # requested URI
    ...
            # Write some code to generate a list of users on the site and
            # set some template parameters
        }
    
  2. or download this
    if ($template->query(name => 'temperature' or $template->query(name =>
    + 'cloud_cover') {
       # The code to find out what the weather is like goes here
    }
    
  3. or download this
    my %param= map($_ => 1) $template->query();
    
    if (exists $param{'temperature'} or exists $param{'cloud_cover'}) {
        # The weather code goes here
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-18 07:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found