in reply to LWP::Credentials help with previously working perl script PLEASE???

my $server = '$URL';

You're using single quotes, so the value of $server is literally $URL, not the contents of $URL. Use double quotes and it will expand $URL.

--Pileofrogs

P.S. Can you please clean up the front-page garbage in your post?

  • Comment on Re: LWP::Credentials help with previously working perl script PLEASE???
  • Download Code

Replies are listed 'Best First'.
Re^2: LWP::Credentials help with previously working perl script PLEASE???
by funeeldy (Initiate) on May 16, 2008 at 17:37 UTC
    I am actually hard coding the info, I just replaced it with $URL and the like to hide it from your eyes. So, the quotes don't matter in this case. thanks.