http://www.perlmonks.org?node_id=245325


in reply to Re: Re: Re: Getting more out of LWP::Simple
in thread Getting more out of LWP::Simple

You need to import LWP::Simple's $ua before you can use it. And because you're explicitly requesting the export of a certain symbol, you have to ask for all of the ones you need. So replace your use line with
use LWP::Simple qw($ua get);

Makeshifts last the longest.

Replies are listed 'Best First'.
Re: Re^4: Getting more out of LWP::Simple
by Anonymous Monk on Mar 24, 2003 at 12:14 UTC
    Thanks alot, it works perfectly!

    I don't know how I didn't see the other post that already explained this. I think I was googled out searching through previous usenet postings for the previous 3-4 hours looking for inspiration without any joy.

    Thanks again

    Toby