Please reply to the list and not just to me so everyone can help/learn. First things first. Before you get into parseing the result of get() Make sure it's getting the right thing.
1) Can you open http://www.google.com/ in a browser on that machine? 2) use strict; always! 3) Do you get google's home page's html if you do : use strict; use LWP::Simple; print "Content-type: text/html\n\n"; my $webPage=get("http://www.google.com/"); print $webPage; 4) If so try the url you're trying to get to parse. Do you get that ok? 5) Are you using $webPage in the rest of your script or did you miss the miss the capitol P and use $webpage? Answer these questions and we will have either solved it or narrowed it down quite a bit. HTH DMuey -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]