I am trying to run some information off of a web site. The code that I had been using is as below.
#!/usr/bin/perl -w
use strict;
use LWP::Simple;
my @a = get("http://www.thewolfweb.com/");
print "@a";
The above works fine. When I change the 4th line to
my @a = get("http://www.thewolfweb.com/message.asp\?section\=6");
I get a use of uninitialized variable on line 5. I was curious as to what this could be.
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