- or download this
<config>
<profile name="Test">
...
<single_dlt_file>blah</single_dlt_file>
</profile>
</config>
- or download this
# Load XML Config file...
use XML::Simple;
...
use Data::Dumper;
print Dumper($config);
print $config->{$desired_config}->{database_type};
- 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";