Help for this page

Select Code to Download


  1. or download this
    $tmpl = HTML::Template->new('filename' => $TEMPLATE);
    $tmpl->param('Temperature' => $current->{'Temperature'});
    ...
    $tmpl->param('WindSpeed' => $current->{'WindSpeed'});
    ...
    print $tmpl->output();
    
  2. or download this
    <TABLE>
    <TR>
    ...
    </TD>
    </TR>
    </TABLE>
    
  3. or download this
    <H3>Current weather</H3>
    [insert HTML here using a selection of the variables below]
    ...
    --><!--TMPL_VAR NAME="Visibility"--><!--TMPL_VAR NAME="Icon"--><!--TMP
    +L_VAR NAME="IconDescription"-->-->
    
    ...