LeGo has asked for the wisdom of the Perl Monks concerning the following question:
The above works fine. When I change the 4th line to#!/usr/bin/perl -w use strict; use LWP::Simple; my @a = get("http://www.thewolfweb.com/"); print "@a";
I get a use of uninitialized variable on line 5. I was curious as to what this could be.my @a = get("http://www.thewolfweb.com/message.asp\?section\=6");
Also if anyone is familiar with this, I might need to login somehow or represent my user ID by showing a cookie. Could this cause the error? If so or if not could someone tell me how this could be done. I don't know what module to use if I do try to do this.
Thanks much in advance.
LeGo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: lwp::simple basic question about webbing
by ichimunki (Priest) on Jan 18, 2001 at 00:15 UTC | |
|
Re: lwp::simple basic question about webbing
by merlyn (Sage) on Jan 18, 2001 at 00:05 UTC | |
by LeGo (Chaplain) on Jan 18, 2001 at 00:28 UTC | |
by dkubb (Deacon) on Jan 18, 2001 at 13:27 UTC |