HTML အကိုးအကား

အက္ခရာဖြင့် HTML HTML အမျိုးအစားအလိုက် HTML Browser ပံ့ပိုးမှု HTML အရည်အချင်းများ HTML ကမ္ဘာလုံးဆိုင်ရာ အရည်အချင်းများ HTML ပွဲများ HTML အရောင်များ HTML Canvas HTML အသံ/ဗီဒီယို HTML အက္ခရာအစုံများ HTML Doctypes HTML URL ကုဒ် HTML ဘာသာစကားကုဒ်များ HTML နိုင်ငံကုဒ်များ HTTP မက်ဆေ့ခ်ျများ HTTP နည်းလမ်းများ PX မှ EM Converter ကီးဘုတ်ဖြတ်လမ်းများ


HTML <form> enctype Attribute

❮ HTML <form> tag

ဥပမာ

"multipart/form-data" အဖြစ် ကုဒ်လုပ်ထားသော ဖောင်ဒေတာကို ပို့ပါ-

<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <input type="submit" value="Submit">
</form>

အဓိပ္ပါယ်နှင့် အသုံးပြုမှု

ရည်ညွှန်းချက် သည် enctypeဆာဗာသို့ တင်သွင်းသည့်အခါ ဖောင်ဒေတာကို မည်သို့ကုဒ်လုပ်ရမည်ကို သတ်မှတ်ပေးသည်။

မှတ်ချက်- ရည်ညွှန်း enctypeချက်အား method="post".


Browser ပံ့ပိုးမှု

Attribute
enctype Yes Yes Yes Yes Yes

အထားအသို

<form enctype="value">

ရည်ညွှန်းတန်ဖိုးများ

Value Description
application/x-www-form-urlencoded Default. All characters are encoded before sent (spaces are converted to "+" symbols, and special characters are converted to ASCII HEX values)
multipart/form-data  This value is necessary if the user will upload a file through the form
text/plain Sends data without any encoding at all. Not recommended

❮ HTML <form> tag