File not uploading PHP

后端 未结 9 1590
后悔当初
后悔当初 2020-11-27 23:09

I\'ve attempted to write code to have a file uploaded to a \"media\" folder in PHP. For some reason it continues to not work.

Here\'s the execution code:

<         


        
9条回答
  •  青春惊慌失措
    2020-11-27 23:46

    Make sure that in your form.. you put the enctype.
    eg:

    ;

    To check if files are successfully updated upon submitting the form. use print_r to see results.
    print_r($_FILES);

提交回复
热议问题