Re: Problem with my code

2001-06-27 Thread David Labatte
First you should always use strict. It'll help catch things like your misspeling of jonh. The request you are sending is for a POST, which means that the form data has to be passed in the body of the request, which you forgot to do. So just add: $req->content($john); Correct the spelling mista

Problem with my code

2001-06-27 Thread Greg Touchton
I can't get any response from the location I am trying to contact. I can reach an external location like www.yahoo.com without any problem. When I use my web browser I have no problem receiving a response from the CGI even if I give bad information to the POST. I know I am not using a proxy. Pl