http://qs321.pair.com?node_id=524110


in reply to Re: Re: Re: Re: POST vs GET & their intermingling.
in thread POST vs GET & their intermingling.

I know this is an old message, but someone may find it in a search like I did.

The CGI module spec doesn't disagree with the W3C spec for the FORM tag. They're not referring to the same thing.

In HTML, the action property of the form tag is not optional. If you want to, you can leave it as an empty string (action="") and you will still pass the validator.

In CGI's start_form() method, the action method is optional. If you don't define the action property of the start_form method, it will create a form tag with an action property that points to the current script.

--
-- GhodMode
  • Comment on Re^5: POST vs GET & their intermingling.

Replies are listed 'Best First'.
Re^6: POST vs GET & their intermingling.
by boo_radley (Parson) on Jan 23, 2006 at 17:40 UTC
    As merlyn noted in his post, made a tad over five years ago.