in reply to XML Feed to MySQL

I would probably use LWP::Simple if I didn't need specific error messages if downloading the XML file failed:

#!/usr/bin/perl use LWP::Simple; use XML::Simple; my $xml = XMLin(get("http://example.org")); #...

Replies are listed 'Best First'.
Re^2: XML Feed to MySQL
by Anonymous Monk on Oct 20, 2004 at 12:06 UTC
    yeah thanks, that bit of code seems cool, LWP::Simple probably is enough. I have actually found a cool getstore method as well so will use that to store to disk.