in reply to grabbing webpage data w/o additional modules
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>; }
|
|---|