in reply to Re^6: Submitting queries to server
in thread Submitting queries to server

# The line you already have, but I renamed the var. my $response = $ua->request($req); #print $response->content(); # Prints the content. print $response->as_string(); # Prints the header and the content.

Replies are listed 'Best First'.
Re^8: Submitting queries to server
by Anonymous Monk on Sep 17, 2005 at 11:25 UTC
    I got it, that is:
    HTTP/1.1 200 OK Pragma: no-cache Pragma: no-cache Server: Apache/1.3.26 (Unix) Debian GNU/Linux Content-Type: text/html Expires: 0 Client-Date:17 Sep 2005..... Client-Peer:xxxxxxxxxxx Client-Response-Num: 1 Title:xxxxxxxxx
    Is there any thing wrong so I can't do redirection?