enctype
Enctype is an attribute of the HTML form element that specifies how the submitted form data should be encoded when it is sent to the server. The encoding type primarily affects POST submissions, while for GET submissions the data are included in the URL query string and the enctype attribute is generally ignored.
The most common values are: application/x-www-form-urlencoded, which is the default. In this mode, form fields are
Usage guidelines: use application/x-www-form-urlencoded for standard forms without files, as it yields compact data and broad
Example: <form action="/upload" method="post" enctype="multipart/form-data">.