0 views

For functional forms, you’ll have to run a CGI script. The HTML just creates the appearance of a form.
You can also use free form creators with their own cgi scripts like Freedback

<br /> <form></form> <p>
Creates all forms

<br /> <select multiple name="NAME" size=?></select> <p>
Creates a scrolling menu. Size sets the number of menu items visible before you need to scroll.

<br /> <option>
Sets off each menu item

<br /> <select name="NAME"></select> <p>

Creates a pulldown menu

<textarea name="NAME" cols=40 rows=8></textarea>
Creates a text box area. Columns set the width; rows set the height.

<br /> <input type="checkbox" name="NAME">
Creates a checkbox. Text follows tag.

<br /> <input type="radio" name="NAME" value="x">

Creates a radio button. Text follows tag

<br /> <input type=text name="example" size=20>
Creates a one-line text area. Size sets length, in characters.

<br /> <input type="submit" value="NAME">
Creates a Submit button

<br /> <input type="image" border=0 name="NAME" src="name.gif">
Creates a Submit button using an image

<br /> <input type="reset">
Creates a Reset button