in reply to Whats wrong with this code.

I'm not CGI person, but on the simple perl side, in the call to start_form you have "$FORM_METHOD" without single quotes. In the print statement you have '$FORM_METHOD', inside double quotes, so the singles will be sent.

Replies are listed 'Best First'.
Re^2: Whats wrong with this code.
by ikegami (Patriarch) on Feb 20, 2007 at 17:02 UTC

    so the singles will be sent.

    And? method="POST", method='POST' and method=POST are all valid in HTML.

      Fair enough, I'll get back into my box.