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
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.