Open In App

HTML | <form> enctype Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <form> enctype Attribute is used to specify that data that will be present in form should be encoded when submitting to the server. This type of attribute can be used only if method = “POST”

Syntax:

<form enctype="value"> 

Attribute Value: This attribute contains three value which are listed below:

  • application/x-www-form-urlencoded: It is the default value. It encodes all the characters before sent to the server. It converts spaces into + symbols and special character into its hex value.
  • multipart/form-data: This value does not encode any character.
  • text/plain: This value convert spaces into + symbols but special characters are not converted.

Example: This Example illustrates the use of enctype attribute in <form> element. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>Form enctype attribute</title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">GeeksforGeeks</h1>
    <h2>Form enctype Attribute</h2>
    <form action="#"
          method="post"
          enctype="multipart/form-data">
        First name:
        <input type="text"
               name="fname">
        <br> Last name:
        <input type="text"
               name="lname">
        <br> Address:
        <input type="text"
               name="Address">
        <br>
        <input type="submit"
               value="Submit">
    </form>
</body>
 
</html>


Output :

  

Supported Browsers: The browsers supported by <form> enctype Attribute are listed below:

  • Google Chrome
  • Edge 12 and above
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera

Last Updated : 22 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads