You should create the template from the output of the CGI, not from the code.
perl -MCGI=:standard -e 'print popup_menu({ -name => "query",
-values => [1, 2, 3],
-labels => {qw{ 2 label2
+1 label1 3 label3 }},
-default => 2 })'
<select name="query" >
<option value="1">label1</option>
<option selected="selected" value="2">label2</option>
<option value="3">label3</option>
</select>
Update
So, using
Template, the following seems to work:
Template call:
template 'index', { name => 'query',
options => { label1 => 'Option 1',
label2 => 'Option 2',
label3 => 'Option 3',
},
default => 'label2',
};
The template:
<select name="<% name %>" >
<%- FOR o IN options %>
<option value="<% o.key %>"
<%- IF o.key == default %> selected="selected" <% END -%>
><% o.value %></option>
<%- END %>
</select>
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.