Help for this page

Select Code to Download


  1. or download this
        $cgi->start_form({-name=>'box_form',-target=>"_new"}),
        $cgi->font({-'size'=>2,-'color'=>"#2E2E2E",-'face'=>"arial"}),$cgi
    +->b(),
    ...
        ),
        $cgi->endform,
        ;
    
  2. or download this
    get '/' => sub {
        # Create customers list
    ...
        template 'index', { hash => \%cust_name };
    };