arunmep has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: need to read the web source
by marto (Cardinal) on Aug 31, 2006 at 11:20 UTC
    arunmep,

    You want to look at the LWP and WWW::Mechanize modules. Both of these modules have good documentation and example code.

    Hope this helps.

    Martin
Re: need to read the web source
by artist (Parson) on Aug 31, 2006 at 11:41 UTC
    The basic.
    use LWP::Simple; my $url = shift; print get $url;
    --Artist

      or the other way around:

      getprint $url
      TIMTOWTDI ;-)

      --
      b10m

      All code is usually tested, but rarely trusted.
Re: need to read the web source
by planetscape (Chancellor) on Aug 31, 2006 at 16:29 UTC