Help for this page

Select Code to Download


  1. or download this
        my %params = %{$config{'template'}};
        print $params{'home_url'};
    
  2. or download this
        print $config{'template'}->{'home_url'};
    
  3. or download this
       my %config = ParseConfig(\*DATA);
    
    ...
       $Data::Dumper::Sortkeys = \%config;
       print Dumper(\%config);  
       print $params{'home_url'};