Help for this page

Select Code to Download


  1. or download this
    # Flat file
    ac      193.0.0.193     Ascension Island
    as      128.250.1.21    American Samoa
    be      192.36.125.2    Belgium
    biz     209.173.53.162  US BIZ
    
  2. or download this
    # send data to template
    my @root_loop = &get_roots;
    my $template = HTML::Template->new(filename => 'Digbeta/digauthform.tm
    +pl', die_on_bad_params => 0);
    $template->param(root_loop => @root_loop);
    print $template->output;
    
  3. or download this
    # create Array of Hashes
    sub get_roots {
    ...
            }
            return \@root_loop;
    }
    
  4. or download this
    # HTML Template
    <select NAME="server">
    ...
         </TMPL_LOOP>
    </TMPL_IF>
    </select>