How to upload mp3 files

后端 未结 1 489
灰色年华
灰色年华 2020-12-17 08:14

Im trying to get a form to upload mp3 or certain image files to a folder.
Using below code I can upload the image files ok, but when i try to upload an mp3 i get the err

相关标签:
1条回答
  • 2020-12-17 08:49

    Looks like your mp3 file cannot be uploaded, so it is missing in $_FILES array. That might be due to its size compared to image files.

    Please check upload_max_filesize and post_max_size settings from your php.ini and allow a greater size than your mp3 file.

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