You'll need to read up on HTTP (as a protocol) to find out what kind of request you can make to retrieve a web page. It'll be something like this:
That's highly untested.my $request = "GET /path/to/file.html HTTP/1.0\n\n"; print $socket $request; my $result; { local $/; $result = <$socket>; }
In reply to Re: grabbing webpage data w/o additional modules
by chromatic
in thread grabbing webpage data w/o additional modules
by ImpalaSS
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |