Help Certification Teaching Assistance Webmaster Advice Tutorials IT Help Advice Workstation DVDs Tutoring Adobe DVDs Tutoring Programming Training Teaching Graphics Training
Office Software - Excel Software - Microsoft Software - QuickBooks Software - Visual Software - Comptuer Software - Web Software - Sharepoint Software - Photoshop Software - Mac Software - QuarkXPress Software - management Software - Project Software - Learn Software - email Software - Network Software - Linux Software - Unix Software - Work Software - Net Software - ASP Software - PHP Software - HTML Software - CMS Software - XML Software - Mobile Software -
CDs Certification Teaching Help Technology DVDs Lessons Certification Guidance Education Graphics Guidance Online IT Training Software Computers Guidance Help Webmaster Lessons

Working with forms HTML Form Help

Working with Forms
Forms are used to gather information. Usually for database management. Forms have different input type such as checkboxes, radio buttons, text field, dropdown menus. The items must be named in order for the receiving document to be able to understand them and get the results.
< form></form>Creates all forms methods includde post and get
< select name="NAME"></select> Used for pulldown menu
< textarea name="NAME" cols=? rows=?></textarea> Text Box
< input type="checkbox" name="NAME"> Check Box
< input type="radio" name="NAME" value="?"> Radio Buttons
Example: <form name="form1" method="post" action="">
< input type="text" name="textfield">
< input type="hidden" name="hiddenField">
< textarea name="textarea"></textarea>
< input type="checkbox" name="checkbox" value="checkbox">
< input type="radio" name="radiobutton" value="radiobutton"> <p>
< label><input type="radio" name="RadioGroup1" value="radio"> Radio</label>
< label><input type="radio" name="RadioGroup1" value="radio"> Radio</label></p>
< select name="select"> </select>
< select name="menu1" onChange="MM_jumpMenu('parent',this,0)"> <option selected>unnamed1</option> </select>
< label><input type="submit" name="Submit" value="Submit"></label>
< /form>