File not uploading PHP

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

    In your form tag you want something like this

    Make sure enctype is set to multipart/form-data for files. Replace uploader.php with the name of the php file doing the processing. Also make sure your permissions are set so the file can be created in the directory.

    Here's a list of possible problems: http://php.net/manual/en/features.file-upload.php

提交回复
热议问题