Web Design 6 Flashcards
<p>Get (Forms)</p>
<p>GET method is good for non-secure data</p>
<p>Post (Forms)</p>
<p>POST is a secure method that has no size limitations, and can be used to send large amounts of data.</p>
<p>Radio Button</p>
<p>Supports only 1 selection| Shape is Round</p>
<p>Checkbox</p>
<p>Supports multiple selections | Shape is Square</p>
<p>Text Field</p>
<p>Supports 30 characters</p>
<p>Text Area</p>
<p>Supports unlimited characters. Use to be limited to 300</p>
<p>max length (attribute)</p>
<p>specifies the maximum number of characters allowed in the element.</p>
<p>Submit button</p>
<p>when clicked, causes a form's action statement to process</p>
<p>Select tag</p>
<p>is a drop down list that can be used as a menu</p>
<p>Form-Handler</p>
<p>he form-handler is typically a server page with a script for processing input data.</p>
<p>formaction="/action_page.php"</p>
<p>defines a button for submitting the form data to a form-handler</p>
<p>action="/action_page.php</p>
<p>Action- is the attribute to specify the location and name of the script that will process form data</p>