my $ua = LWP::UserAgent->new; $ua->env_proxy; $te='hallo hallo hallo'; print $te; my $response = $ua->get('http://sentimentanalyzer.appspot.com','input'=>$te); if ($response->is_success) { #In here i want to retrieve a value from the site after # inserting the text and hitting the "submit" button. }