Help for this page

Select Code to Download


  1. or download this
    <config>
      <profile name="Test">
    ...
        <single_dlt_file>blah</single_dlt_file>
      </profile>
    </config>
    
  2. or download this
    # Load XML Config file...
    use XML::Simple;
    ...
    use Data::Dumper;
    print Dumper($config);
    print $config->{$desired_config}->{database_type};
    
  3. or download this
    print $config->{profile}->{$desired_config}->{database_type};
    print "\nTest1\n";
    ...
    print "\nTest6\n";
    print $config->{profile}=>{$desired_config}->{database_type};
    print "\nTest7\n";