Help for this page

Select Code to Download


  1. or download this
    % my $date = localtime();
    
  2. or download this
    Today's date is <% $date %>
    
  3. or download this
    % my $ua = $r->header_in('User-Agent');
    % if ($ua =~ /msie/i) {
    ...
    % } elsif ($ua =~ /mozilla/i) {
         Welcome, Netscape users
    % }
    
  4. or download this
    % foreach $item (@list) {
      <li><% $item %>
    % }
    
  5. or download this
    <& header &>
    <& nav-bar &>
    Here is the content of this page.
    <& footer &>
    
  6. or download this
    <& header, date=>$date, section=>'News' &>
    
  7. or download this
    <%args>
    $date
    $section=>'Updates'
    </%args>