Site Tools


webseite:html:form

Table of Contents

This is an old revision of the document!


Form

Basics

CodeWhat it does
<form action="File.php" method="post"></form> opens a form and closes it
<input type="text" name="text" size="20"> displays a textfield
   <select name="status">
   <option selected value=""></option>
   <option value="text1">text1</option>
   <option value="text2">text2</option>
   <option value="text3">text3</option>
   </select>
displays a dropdown

Code example

webseite/html/form.1401197458.txt.gz · Last modified: 2017/03/01 12:50 (external edit)