Help for this page

Select Code to Download


  1. or download this
    my $cssFiles = [];
    push @{$cssFiles}, $_css_path;
    push @{$cssFiles}, $_css_path2;
    # Then in the start_html() this line:
    -style => { -code => $page_style, -src => $cssFiles },
    
  2. or download this
    my @cssFiles;
    push @cssFiles, $_css_path;
    push @cssFiles, $_css_path2;
    # Then in the start_html() this line:
    -style => { -code => $page_style, -src => \@cssFiles },