SlideShare ist ein Scribd-Unternehmen logo
1 von 59
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

Weitere ähnliche Inhalte

Was ist angesagt?

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
 

Was ist angesagt? (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
 

Andere mochten auch (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
 

Ähnlich wie 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
 

Ähnlich wie 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)
 
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
 
Html5
Html5Html5
Html5
 

Kürzlich hochgeladen

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Kürzlich hochgeladen (20)

Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 

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

Hinweis der Redaktion

  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