PHP Uploading Files

后端 未结 1 724
孤独总比滥情好
孤独总比滥情好 2020-12-19 09:05

I\'m having a problem uploading files in PHP. When I submit, $_FILES[] is empty. I feel like this is such a n00b question :/

My form:

相关标签:
1条回答
  • 2020-12-19 09:44

    Make sure your form tag has this attribute: enctype="multipart/form-data"

    Without it the files will not get uploaded.

    0 讨论(0)
提交回复
热议问题