in reply to Re^2: FIle Upload Error Help!
in thread FIle Upload Error Help!
But then you may want to use LWP::Simple instead.$url = new URI::URL($urls); $req = new HTTP::Request('GET', $url, $hdrs); $ua = new LWP::UserAgent; $resp = $ua->request($req); if ($resp->is_success) { open(IMAGE, ">../../img/$filename") or die "$!"; binmode IMAGE; print IMAGE $resp->content; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: FIle Upload Error Help!
by Anonymous Monk on Jul 21, 2011 at 19:34 UTC | |
by JavaFan (Canon) on Jul 21, 2011 at 19:46 UTC | |
by cdarke (Prior) on Jul 22, 2011 at 07:20 UTC |