--- Gael PEGLIASCO <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I'm looking for a way to open a http url, in order to retrieve parts of its
> content and display it in a cgi script.
>
> I'd like to do things like :
>
> open (FILE, 'http://www.myurl.com'); or
> open (FILE, 'https://www.myurl.com');
>
Gael PEGLIASCO <[EMAIL PROTECTED]> said something to this effect on
08/08/2001:
> Hello,
>
> I'm looking for a way to open a http url, in order to retrieve
> parts of its content and display it in a cgi script.
>
> I'd like to do things like :
>
> open (FILE, 'http://www.myurl.com'); or
> open
Mel Matsuoka wrote:
> Use the LWP::Simple module.
Thanks, I'm going to try this module.
Do you know WebFs::FileCopy ?
http://search.cpan.org/doc/BZAJAC/WebFS-FileCopy-1.04/lib/WebFS/FileCopy.pm
With kind regards,
Gael,
[EMAIL PROTECTED]
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For addit
Camilo Gonzalez wrote:
>
> Why not open the file itself? In other words, try:
> open (FILE, 'somefile.html') or die "Can't open HTML document $!";
This is not possible because the file I want to open is located on another web
server.
For example, opening a file located by an url can be usefull t
At 08:22 AM 08/08/2001 -0500, Camilo Gonzalez wrote:
>Why not open the file itself? In other words, try:
>
>open (FILE, 'somefile.html') or die "Can't open HTML document $!";
>
>I don't think you can open and search an entire site.
I'm sure the O.P. wants to "include" the content of external we
Why not open the file itself? In other words, try:
open (FILE, 'somefile.html') or die "Can't open HTML document $!";
I don't think you can open and search an entire site.
-Original Message-
From: Gael PEGLIASCO [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 08, 2001 8:15 AM
To: [
At 03:14 PM 08/08/2001 +0200, Gael PEGLIASCO wrote:
>Hello,
>
>I'm looking for a way to open a http url, in order to retrieve parts of its
>content and display it in a cgi script.
>
>I'd like to do things like :
>
>open (FILE, 'http://www.myurl.com'); or
>open (FILE, 'https://www.myurl.com');
>
>D