HTMLCOOK -
Main Page
- lists all articles and tutorials
Google
  Web www.htmlcook.com
1&1 hosting - UK hosting - Buy your domain from 1&1 - Best domain prices in the UK!
1&! US hosting - Hosting Made Easy. Order 1&1 Microsoft Web Hosting from the World’s # 1 Web Host. Get up to 5 FREE domains! Linux hosting, dedicated servers. Amazing service.
HTMLCOOK sponsored by Freebies Network UK
UK Internet access deals

Introduction
Backgrounds
Fonts
Advanced Text
Lists
images
Links
Tables
Frames
Forms
JavaScript
Recommended Links  

Forms

 

Make yourself a file folder called "forms". You'll need it for this section.

Forms require a minimum of this much code:

<FORM>
</FORM>

Forms can do two basic things, they can send data to a CGI Script (Common Gateway Interface) to process the information or they can have the data emailed directly to you.

The most simple type of FORM is a "mailto:" form. Make yourself a brand new page and save it in your Forms file folder as "Form1.html". It should look like this:


<form name ="formname" action = "mailto:youremail@youremail.com" >

<input type ="text" name ="textfield"> Your name

<input type ="text" name ="textfield2"> Your email

<input type="submit" name="submit" value="submit">

<input type="reset" name="reset" value="reset">

</form>

 


More coming soon on Forms!

 

Top of Page


<<Previous Page
Next Page >>