Help for this page

Select Code to Download


  1. or download this
    sub selectify {
        my $values = shift;
    ...
             }
        } @{$values}];
    }
    
  2. or download this
    $template->param(foo_loop => selectify(\@values,\@labels,\@selected));
    
  3. or download this
    <select name="foo">
    <tmpl_loop name="foo_loop">
    ...
      </option>
    </tmpl_loop>
    </select>
    
  4. or download this
    <select name="foo">
    <tmpl_loop name="foo_loop">
      <tmpl_include name="option.tmpl">
    </tmpl_loop>
    </select>