René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

form [HTML]

A form allows comunication between the web server and the client.
<form  
  action  = 'http://www.foo.bar/x/y/z.cgi'
  method  = 'POST'
  enctype = 'multipart/form-data'
  target  = '_blank'
>

</form

method

The default method is GET. POST can also be specified.

enctype

The default enctype is application/x-www-form-urlencoded. Alternatively, multipart/form-data can be specified if the method is POST.
Sets the Content-type in a HTTP header.

frame

The name of a frame or any of the predefined targets.