Forms Upload

All HTML topics
∙ Chapter 42

Forms Upload & Method

When you upload files, the form needs enctype="multipart/form-data". Also learn action, method, and different button types.

📁Beginner checklist

method="post" is used for sending data.

action is the URL that receives form data.

name on inputs becomes the key in submitted data.

forms-upload.php
📝 Edit Code
👁 Live Preview
💡 Without enctype="multipart/form-data", the file input will not send the file.