Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I am using HTML::Template with great success, but want to iterate through a huge number of template values as part of a form submission checker. Assigning the template variable values is lengthy and repetitive using the only method I know how. I have the template variables names and their required values in a hash, so wouldn't it be nice if I could just iterate through that and churn out the template variables?

So, is there a way to use a variable for all or part of the left hand side of the value pair assigmnent? Or another way to do the same thing?
# how I do it now $tmpl->param(flag_location => "foo $var bar"); # I have not used hashes here to make it easier # to see the two things I am trying to do. # how I want to do it my $param = 'flag_location'; $tmpl->param($param => "foo $var bar"); # or better still my $param = 'location'; $tmpl->param("flag_$param" => "foo $var bar");
Also, what is the correct name for the values either side of the '=>' so I can refer to these things correctly in the future?

Evidently I'm a little confused as to the exact usage of this type of assignment and it's limitations, and can't find any good explanations of it anywhere thus far.

In reply to Value Pair Assignment by ryan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found