Help for this page

Select Code to Download


  1. or download this
    my $template;
    while ( I am looping through Sections) {
    ...
      $template = this_Section->{TEMPLATE};
      last;
    }
    
  2. or download this
    foreach $ini_sect ( sort keys %ini_file ) {
      %$ini_sect = %{ $ini_file{$ini_sect} };
    }
    
  3. or download this
    foreach $ini_sect ( keys %ini_file ) {
      %$ini_sect = %{ $ini_file{$ini_sect} };
    }