Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

to post, or not to post...

by japhy (Canon)
on Oct 12, 2000 at 05:52 UTC ( [id://36347]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use LWP::FileHandle;
    lwpopen URL, $method, $url, $query;
    
  2. or download this
    lwpopen URL, GET => $url, 'this=that';
    lwpopen URL, GET => "$url?this=that";  # can append QS to URL
    lwpopen URL, POST => $url, [ this => 'that' ];
    lwpopen URL, POST => $url, { this => 'that' };
    
  3. or download this
    use LWP::FileHandle;
    lwpopen JAPHY, GET => 'http://www.crusoe.net/~jeffp/';
    ...
      print;
    }
    lwpclose JAPHY;
    
  4. or download this
    package LWP::FileHandle;
    
    ...
    sub DESTROY {
      $_[0]{SOCKET}->close;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://36347]
Approved by root
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-24 03:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found