File not uploading PHP

后端 未结 9 1593
后悔当初
后悔当初 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:48

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

    move_uploaded_file($file_tmp,"images/".$file_name);
    echo "Success
    

提交回复
热议问题