in reply to How to resolve this error "Unrecognised option" if i use XML::Simple ?
You've obviously just posted a snippit of your code, but do you know that XML::Simple can process a file without having to read it in first:
#untested use XML::Simple; my $sales_channel_output = XMLin( $sales_channel_input );
|
|---|