SlideShare a Scribd company logo
CREATING FORMS
  by Ray Villalobos
WHAT ARE FORMS?
WHAT ARE FORMS?


• Create   interactions with server
WHAT ARE FORMS?


• Create   interactions with server

• Compound     tag
WHAT ARE FORMS?


• Create   interactions with server

• Compound     tag

• Accept   user input in various ways
FORM TAG
           <form action="formprocessor.php">
             First name: <input type="text" name="fname"><br>
             <input type="submit">
           </form>
FORM TAG
                                    <form action="formprocessor.php">
                                      First name: <input type="text" name="fname"><br>
                                      <input type="submit">
                                    </form>




• Action   Parameters tells browser where to send data
FORM TAG
                                    <form action="formprocessor.php">
                                      First name: <input type="text" name="fname"><br>
                                      <input type="submit">
                                    </form>




• Action   Parameters tells browser where to send data

• Method tells browser to pass data as URL (GET) or in the
 background(POST)
FORM TAG
                                    <form action="formprocessor.php">
                                      First name: <input type="text" name="fname"><br>
                                      <input type="submit">
                                    </form>




• Action   Parameters tells browser where to send data

• Method tells browser to pass data as URL (GET) or in the
 background(POST)

• Enctype   specifies how to encode the data
THE GET METHOD
THE GET METHOD

• Passes   data as a URL
THE GET METHOD

• Passes   data as a URL

• Name/Value Pairs (? then name=values
 separated by &)
THE GET METHOD

• Passes   data as a URL

• Name/Value Pairs (? then name=values
 separated by &)

• Useful   for bookmarking
THE GET METHOD

• Passes   data as a URL

• Name/Value Pairs (? then name=values
 separated by &)

• Useful   for bookmarking

• Limit   to how much you can place in URL
THE GET METHOD

• Passes   data as a URL

• Name/Value Pairs (? then name=values
 separated by &)

• Useful   for bookmarking

• Limit   to how much you can place in URL

• Not   for sensitive info
THE POST METHOD
THE POST METHOD


• Sends   the data as an HTTP transaction
THE POST METHOD


• Sends   the data as an HTTP transaction

• Cannot   be bookmarked
THE POST METHOD


• Sends   the data as an HTTP transaction

• Cannot   be bookmarked

• More    secure than GET
THE POST METHOD


• Sends   the data as an HTTP transaction

• Cannot    be bookmarked

• More    secure than GET

• Does    not have size limitations
ENCTYPE




             Value                                     Description
                                    Default. Characters encoded before sent (spaces converted to
application/x-www-form-urlencoded
                                    "+" symbols, special characters converted to ASCII/HEX)


multipart/form-data                 No characters are encoded. Required for file uploads


text/plain                          Spaces are converted to "+" symbols, nothing else
ENCTYPE
• Defines now form data is encoded for
 sending to server




              Value                                     Description
                                     Default. Characters encoded before sent (spaces converted to
 application/x-www-form-urlencoded
                                     "+" symbols, special characters converted to ASCII/HEX)


 multipart/form-data                 No characters are encoded. Required for file uploads


 text/plain                          Spaces are converted to "+" symbols, nothing else
ENCTYPE
• Defines now form data is encoded for
 sending to server

• Only         needed if method is POST



               Value                                     Description
                                      Default. Characters encoded before sent (spaces converted to
  application/x-www-form-urlencoded
                                      "+" symbols, special characters converted to ASCII/HEX)


  multipart/form-data                 No characters are encoded. Required for file uploads


  text/plain                          Spaces are converted to "+" symbols, nothing else
ENCTYPE
• Defines now form data is encoded for
 sending to server

• Only         needed if method is POST

• Can          be one of three

               Value                                     Description
                                      Default. Characters encoded before sent (spaces converted to
  application/x-www-form-urlencoded
                                      "+" symbols, special characters converted to ASCII/HEX)


  multipart/form-data                 No characters are encoded. Required for file uploads


  text/plain                          Spaces are converted to "+" symbols, nothing else
INPUT   name: <input name="fname"><br />
INPUT                  name: <input name="fname"><br />




• Most   common and versatile form element
INPUT                    name: <input name="fname"><br />




• Most   common and versatile form element

• Manydifferent types: text, checkbox, password, radio, file,
 hidden, image, submit, reset,
INPUT                    name: <input name="fname"><br />




• Most   common and versatile form element

• Manydifferent types: text, checkbox, password, radio, file,
 hidden, image, submit, reset,

• HTML5  & Mobile: color, date, datetime, datetime-local, email,
 month, number, range, search, tel, time, url, week
COMMON INPUT ATTRIBUTES
COMMON INPUT ATTRIBUTES

 • name/value: the   name and values that will be sent to
  the action URL
COMMON INPUT ATTRIBUTES

 • name/value: the   name and values that will be sent to
  the action URL

 • checked: on
             checkboxes/radio buttons, this displays
  checkbox or radio as pre-selected
COMMON INPUT ATTRIBUTES

 • name/value: the   name and values that will be sent to
  the action URL

 • checked: on
             checkboxes/radio buttons, this displays
  checkbox or radio as pre-selected

 • src: on   input type image the URL of the image
COMMON INPUT ATTRIBUTES

 • name/value: the   name and values that will be sent to
  the action URL

 • checked: on
             checkboxes/radio buttons, this displays
  checkbox or radio as pre-selected

 • src: on   input type image the URL of the image

 • HTML5: autofocus, autocomplete, placeholder, required
LABEL   <label for="myname">Male</label>
        <input id="myname" name="name" /><br>
LABEL               <label for="myname">Male</label>
                               <input id="myname" name="name" /><br>




• Every   field should have a label
LABEL               <label for="myname">Male</label>
                               <input id="myname" name="name" /><br>




• Every   field should have a label

• Helps   with Usability, mobile devices
LABEL                <label for="myname">Male</label>
                                <input id="myname" name="name" /><br>




• Every   field should have a label

• Helps   with Usability, mobile devices

• for   attribute ties the text to the input field
LABEL                <label for="myname">Male</label>
                                <input id="myname" name="name" /><br>




• Every   field should have a label

• Helps   with Usability, mobile devices

• for   attribute ties the text to the input field

• Makes   label activate input field
TEXTAREA   <textarea name="comments" rows="4" cols="50"></textarea>
TEXTAREA                    <textarea name="comments" rows="4" cols="50"></textarea>




• Multi   line text input
TEXTAREA                     <textarea name="comments" rows="4" cols="50"></textarea>




• Multi   line text input

• Beginning   and end tag.
TEXTAREA                     <textarea name="comments" rows="4" cols="50"></textarea>




• Multi   line text input

• Beginning   and end tag.

• maxlength: max     # of characters allowed
TEXTAREA                     <textarea name="comments" rows="4" cols="50"></textarea>




• Multi   line text input

• Beginning   and end tag.

• maxlength: max     # of characters allowed

• Youcan use the rows and cols attribute, but
 usually better to define size with CSS.
SELECT   <select name="referral">
           <option>Choose...</option>
           <option value="fb">Facebook</option>
         </select>
SELECT      <select name="referral">
                       <option>Choose...</option>
                       <option value="fb">Facebook</option>
                     </select>




• Drop   down list
SELECT                        <select name="referral">
                                         <option>Choose...</option>
                                         <option value="fb">Facebook</option>
                                       </select>




• Drop   down list

• <option>   tags define individual options for dropdown
SELECT                         <select name="referral">
                                          <option>Choose...</option>
                                          <option value="fb">Facebook</option>
                                        </select>




• Drop   down list

• <option>   tags define individual options for dropdown

• Name   within <option> is label, not value
SELECT                         <select name="referral">
                                           <option>Choose...</option>
                                           <option value="fb">Facebook</option>
                                         </select>




• Drop    down list

• <option>    tags define individual options for dropdown

• Name    within <option> is label, not value

• Value
      attribute on option tag sends value to action
 URL with name from select tag.
SELECT                           <select name="referral">
                                             <option>Choose...</option>
                                             <option value="fb">Facebook</option>
                                           </select>




• Drop    down list

• <option>     tags define individual options for dropdown

• Name    within <option> is label, not value

• Value
      attribute on option tag sends value to action
 URL with name from select tag.

• Multiple   attribute lets you select multiple items at once
BUTTON   <button type="button">Click Me!</button>
BUTTON                 <button type="button">Click Me!</button>




•A   clickable button
BUTTON                        <button type="button">Click Me!</button>




•A   clickable button

• Almost   exactly like input type=submit
BUTTON                         <button type="button">Click Me!</button>




•A   clickable button

• Almost   exactly like input type=submit

• type   can be button, reset or submit
BUTTON                         <button type="button">Click Me!</button>




•A   clickable button

• Almost    exactly like input type=submit

• type   can be button, reset or submit

• Can    use outside of forms
FIELDSET
FIELDSET

• Groups   form elements togethers
FIELDSET

• Groups   form elements togethers

• Drawsa box around related elements in
 most browsers
FIELDSET

• Groups   form elements togethers

• Drawsa box around related elements in
 most browsers

• Youuse the <legend> tag to define the
 fieldset's title
THE END

More Related Content

What's hot

ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
Clément Wehrung
 
Week 2 HTML lists, hyperlinks, tables, and images
Week 2 HTML lists, hyperlinks, tables, and imagesWeek 2 HTML lists, hyperlinks, tables, and images
Week 2 HTML lists, hyperlinks, tables, and images
Rowena LI
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
Jussi Pohjolainen
 
Html xhtml tag-sheet
Html xhtml tag-sheetHtml xhtml tag-sheet
Html xhtml tag-sheet
wihrbt
 

What's hot (20)

HTML 101
HTML 101HTML 101
HTML 101
 
HTML 5 Step By Step - Ebook
HTML 5 Step By Step - EbookHTML 5 Step By Step - Ebook
HTML 5 Step By Step - Ebook
 
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
 
Origins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLOrigins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTML
 
Week 2 HTML lists, hyperlinks, tables, and images
Week 2 HTML lists, hyperlinks, tables, and imagesWeek 2 HTML lists, hyperlinks, tables, and images
Week 2 HTML lists, hyperlinks, tables, and images
 
Xhtml 2010
Xhtml 2010Xhtml 2010
Xhtml 2010
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
 
Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)
 
Html xhtml tag-sheet
Html xhtml tag-sheetHtml xhtml tag-sheet
Html xhtml tag-sheet
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
 
Web I - 02 - XHTML Introduction
Web I - 02 - XHTML IntroductionWeb I - 02 - XHTML Introduction
Web I - 02 - XHTML Introduction
 
Html and Xhtml
Html and XhtmlHtml and Xhtml
Html and Xhtml
 
Session ii(html)
Session ii(html)Session ii(html)
Session ii(html)
 
Learning to run
Learning to runLearning to run
Learning to run
 
Doing more with LESS
Doing more with LESSDoing more with LESS
Doing more with LESS
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTML
 
Beginning html
Beginning  htmlBeginning  html
Beginning html
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
 
HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & Llinks
 

Viewers also liked (9)

Doing business
Doing businessDoing business
Doing business
 
Making money with Google's Adsense
Making money with Google's AdsenseMaking money with Google's Adsense
Making money with Google's Adsense
 
Online Advertising
Online AdvertisingOnline Advertising
Online Advertising
 
Analytics essentials
Analytics essentialsAnalytics essentials
Analytics essentials
 
Building Semantic HTML tables
Building Semantic HTML tablesBuilding Semantic HTML tables
Building Semantic HTML tables
 
Understanding html
Understanding htmlUnderstanding html
Understanding html
 
Social media fundamentals
Social media fundamentalsSocial media fundamentals
Social media fundamentals
 
CSS Fundamentals
CSS FundamentalsCSS Fundamentals
CSS Fundamentals
 
Working with HTML Lists
Working with HTML ListsWorking with HTML Lists
Working with HTML Lists
 

Similar to Creating forms

W3Conf slides - The top web features from caniuse.com you can use today
W3Conf slides - The top web features from caniuse.com you can use todayW3Conf slides - The top web features from caniuse.com you can use today
W3Conf slides - The top web features from caniuse.com you can use today
adeveria
 

Similar to Creating forms (20)

Introduction to php web programming - get and post
Introduction to php  web programming - get and postIntroduction to php  web programming - get and post
Introduction to php web programming - get and post
 
Web forms in php
Web forms in phpWeb forms in php
Web forms in php
 
PHP - Introduction to PHP Forms
PHP - Introduction to PHP FormsPHP - Introduction to PHP Forms
PHP - Introduction to PHP Forms
 
Web Application Development using PHP Chapter 5
Web Application Development using PHP Chapter 5Web Application Development using PHP Chapter 5
Web Application Development using PHP Chapter 5
 
Introduction to web development - HTML 5
Introduction to web development - HTML 5Introduction to web development - HTML 5
Introduction to web development - HTML 5
 
PHP-04-Forms.ppt
PHP-04-Forms.pptPHP-04-Forms.ppt
PHP-04-Forms.ppt
 
Working with data.pptx
Working with data.pptxWorking with data.pptx
Working with data.pptx
 
forms.pptx
forms.pptxforms.pptx
forms.pptx
 
Chapter 9: Forms
Chapter 9: FormsChapter 9: Forms
Chapter 9: Forms
 
Getting Information through HTML Forms
Getting Information through HTML FormsGetting Information through HTML Forms
Getting Information through HTML Forms
 
Web Development Course: PHP lecture 2
Web Development Course: PHP lecture 2Web Development Course: PHP lecture 2
Web Development Course: PHP lecture 2
 
Cmsc 100 (web forms)
Cmsc 100 (web forms)Cmsc 100 (web forms)
Cmsc 100 (web forms)
 
Working with Data and built-in functions of PHP
Working with Data and built-in functions of PHPWorking with Data and built-in functions of PHP
Working with Data and built-in functions of PHP
 
Web 101
Web 101Web 101
Web 101
 
Episode 14 - Basics of HTML for Salesforce
Episode 14 - Basics of HTML for SalesforceEpisode 14 - Basics of HTML for Salesforce
Episode 14 - Basics of HTML for Salesforce
 
HTML/CSS/java Script/Jquery
HTML/CSS/java Script/JqueryHTML/CSS/java Script/Jquery
HTML/CSS/java Script/Jquery
 
Class 21
Class 21Class 21
Class 21
 
Class 21
Class 21Class 21
Class 21
 
GET and POST in PHP
GET and POST in PHPGET and POST in PHP
GET and POST in PHP
 
W3Conf slides - The top web features from caniuse.com you can use today
W3Conf slides - The top web features from caniuse.com you can use todayW3Conf slides - The top web features from caniuse.com you can use today
W3Conf slides - The top web features from caniuse.com you can use today
 

Recently uploaded

Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 

Recently uploaded (20)

Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
In-Depth Performance Testing Guide for IT Professionals
In-Depth Performance Testing Guide for IT ProfessionalsIn-Depth Performance Testing Guide for IT Professionals
In-Depth Performance Testing Guide for IT Professionals
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2
 

Creating forms

  • 1. CREATING FORMS by Ray Villalobos
  • 3. WHAT ARE FORMS? • Create interactions with server
  • 4. WHAT ARE FORMS? • Create interactions with server • Compound tag
  • 5. WHAT ARE FORMS? • Create interactions with server • Compound tag • Accept user input in various ways
  • 6. FORM TAG <form action="formprocessor.php"> First name: <input type="text" name="fname"><br> <input type="submit"> </form>
  • 7. FORM TAG <form action="formprocessor.php"> First name: <input type="text" name="fname"><br> <input type="submit"> </form> • Action Parameters tells browser where to send data
  • 8. FORM TAG <form action="formprocessor.php"> First name: <input type="text" name="fname"><br> <input type="submit"> </form> • Action Parameters tells browser where to send data • Method tells browser to pass data as URL (GET) or in the background(POST)
  • 9. FORM TAG <form action="formprocessor.php"> First name: <input type="text" name="fname"><br> <input type="submit"> </form> • Action Parameters tells browser where to send data • Method tells browser to pass data as URL (GET) or in the background(POST) • Enctype specifies how to encode the data
  • 11. THE GET METHOD • Passes data as a URL
  • 12. THE GET METHOD • Passes data as a URL • Name/Value Pairs (? then name=values separated by &)
  • 13. THE GET METHOD • Passes data as a URL • Name/Value Pairs (? then name=values separated by &) • Useful for bookmarking
  • 14. THE GET METHOD • Passes data as a URL • Name/Value Pairs (? then name=values separated by &) • Useful for bookmarking • Limit to how much you can place in URL
  • 15. THE GET METHOD • Passes data as a URL • Name/Value Pairs (? then name=values separated by &) • Useful for bookmarking • Limit to how much you can place in URL • Not for sensitive info
  • 17. THE POST METHOD • Sends the data as an HTTP transaction
  • 18. THE POST METHOD • Sends the data as an HTTP transaction • Cannot be bookmarked
  • 19. THE POST METHOD • Sends the data as an HTTP transaction • Cannot be bookmarked • More secure than GET
  • 20. THE POST METHOD • Sends the data as an HTTP transaction • Cannot be bookmarked • More secure than GET • Does not have size limitations
  • 21. ENCTYPE Value Description Default. Characters encoded before sent (spaces converted to application/x-www-form-urlencoded "+" symbols, special characters converted to ASCII/HEX) multipart/form-data No characters are encoded. Required for file uploads text/plain Spaces are converted to "+" symbols, nothing else
  • 22. ENCTYPE • Defines now form data is encoded for sending to server Value Description Default. Characters encoded before sent (spaces converted to application/x-www-form-urlencoded "+" symbols, special characters converted to ASCII/HEX) multipart/form-data No characters are encoded. Required for file uploads text/plain Spaces are converted to "+" symbols, nothing else
  • 23. ENCTYPE • Defines now form data is encoded for sending to server • Only needed if method is POST Value Description Default. Characters encoded before sent (spaces converted to application/x-www-form-urlencoded "+" symbols, special characters converted to ASCII/HEX) multipart/form-data No characters are encoded. Required for file uploads text/plain Spaces are converted to "+" symbols, nothing else
  • 24. ENCTYPE • Defines now form data is encoded for sending to server • Only needed if method is POST • Can be one of three Value Description Default. Characters encoded before sent (spaces converted to application/x-www-form-urlencoded "+" symbols, special characters converted to ASCII/HEX) multipart/form-data No characters are encoded. Required for file uploads text/plain Spaces are converted to "+" symbols, nothing else
  • 25. INPUT name: <input name="fname"><br />
  • 26. INPUT name: <input name="fname"><br /> • Most common and versatile form element
  • 27. INPUT name: <input name="fname"><br /> • Most common and versatile form element • Manydifferent types: text, checkbox, password, radio, file, hidden, image, submit, reset,
  • 28. INPUT name: <input name="fname"><br /> • Most common and versatile form element • Manydifferent types: text, checkbox, password, radio, file, hidden, image, submit, reset, • HTML5 & Mobile: color, date, datetime, datetime-local, email, month, number, range, search, tel, time, url, week
  • 30. COMMON INPUT ATTRIBUTES • name/value: the name and values that will be sent to the action URL
  • 31. COMMON INPUT ATTRIBUTES • name/value: the name and values that will be sent to the action URL • checked: on checkboxes/radio buttons, this displays checkbox or radio as pre-selected
  • 32. COMMON INPUT ATTRIBUTES • name/value: the name and values that will be sent to the action URL • checked: on checkboxes/radio buttons, this displays checkbox or radio as pre-selected • src: on input type image the URL of the image
  • 33. COMMON INPUT ATTRIBUTES • name/value: the name and values that will be sent to the action URL • checked: on checkboxes/radio buttons, this displays checkbox or radio as pre-selected • src: on input type image the URL of the image • HTML5: autofocus, autocomplete, placeholder, required
  • 34. LABEL <label for="myname">Male</label> <input id="myname" name="name" /><br>
  • 35. LABEL <label for="myname">Male</label> <input id="myname" name="name" /><br> • Every field should have a label
  • 36. LABEL <label for="myname">Male</label> <input id="myname" name="name" /><br> • Every field should have a label • Helps with Usability, mobile devices
  • 37. LABEL <label for="myname">Male</label> <input id="myname" name="name" /><br> • Every field should have a label • Helps with Usability, mobile devices • for attribute ties the text to the input field
  • 38. LABEL <label for="myname">Male</label> <input id="myname" name="name" /><br> • Every field should have a label • Helps with Usability, mobile devices • for attribute ties the text to the input field • Makes label activate input field
  • 39. TEXTAREA <textarea name="comments" rows="4" cols="50"></textarea>
  • 40. TEXTAREA <textarea name="comments" rows="4" cols="50"></textarea> • Multi line text input
  • 41. TEXTAREA <textarea name="comments" rows="4" cols="50"></textarea> • Multi line text input • Beginning and end tag.
  • 42. TEXTAREA <textarea name="comments" rows="4" cols="50"></textarea> • Multi line text input • Beginning and end tag. • maxlength: max # of characters allowed
  • 43. TEXTAREA <textarea name="comments" rows="4" cols="50"></textarea> • Multi line text input • Beginning and end tag. • maxlength: max # of characters allowed • Youcan use the rows and cols attribute, but usually better to define size with CSS.
  • 44. SELECT <select name="referral"> <option>Choose...</option> <option value="fb">Facebook</option> </select>
  • 45. SELECT <select name="referral"> <option>Choose...</option> <option value="fb">Facebook</option> </select> • Drop down list
  • 46. SELECT <select name="referral"> <option>Choose...</option> <option value="fb">Facebook</option> </select> • Drop down list • <option> tags define individual options for dropdown
  • 47. SELECT <select name="referral"> <option>Choose...</option> <option value="fb">Facebook</option> </select> • Drop down list • <option> tags define individual options for dropdown • Name within <option> is label, not value
  • 48. SELECT <select name="referral"> <option>Choose...</option> <option value="fb">Facebook</option> </select> • Drop down list • <option> tags define individual options for dropdown • Name within <option> is label, not value • Value attribute on option tag sends value to action URL with name from select tag.
  • 49. SELECT <select name="referral"> <option>Choose...</option> <option value="fb">Facebook</option> </select> • Drop down list • <option> tags define individual options for dropdown • Name within <option> is label, not value • Value attribute on option tag sends value to action URL with name from select tag. • Multiple attribute lets you select multiple items at once
  • 50. BUTTON <button type="button">Click Me!</button>
  • 51. BUTTON <button type="button">Click Me!</button> •A clickable button
  • 52. BUTTON <button type="button">Click Me!</button> •A clickable button • Almost exactly like input type=submit
  • 53. BUTTON <button type="button">Click Me!</button> •A clickable button • Almost exactly like input type=submit • type can be button, reset or submit
  • 54. BUTTON <button type="button">Click Me!</button> •A clickable button • Almost exactly like input type=submit • type can be button, reset or submit • Can use outside of forms
  • 56. FIELDSET • Groups form elements togethers
  • 57. FIELDSET • Groups form elements togethers • Drawsa box around related elements in most browsers
  • 58. FIELDSET • Groups form elements togethers • Drawsa box around related elements in most browsers • Youuse the <legend> tag to define the fieldset's title

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n