in reply to Re^3: Checking for undef after performing get()
in thread Checking for undef after performing get()
BUT, for this to work, the web based script, after being triggered by the get(), must return some response that is part of the HTTP protocol. I added this line to the top of the web based script:my $ua = LWP::UserAgent->new; my $response = $ua->get($url); if ($response->is_success){ (good things happen) } else { my $failmsg= ($response->status_line); (print the $failmsg) return; }
Otherwise you receive a 500 Internal Server Error. Thanks again for the help!print "Content-type: text/html\n\n";
|
|---|