Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 629 Bytes

0265.md

File metadata and controls

31 lines (24 loc) · 629 Bytes

Which of the following HTML code snippets can be used for the file uploading?

  • A)
<form enctype="multipart/form-data" action="index.php" method="post">
  • B)
<form enctype="text/plain" action="index.php" method="post">
  • C)
<form enctype="plain" action="index.php" method="post">
  • D)
<form enctype="application/x-www-form-urlencoded" action="index.php" method="post">
Answer

Answer: A