PHP Uploading file unsuccessful

前端 未结 3 472
旧时难觅i
旧时难觅i 2021-01-27 05:43

I\'m trying to upload a file to my local server, but it keeps being unsuccessful.

All my files are inside /var/www/html/ However I made a folder called uploads in the h

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-27 06:16

    Your Input file is

    so change $_FILES['fileToUpload']['name'] to $_FILES['uploadedfile']['name']

    $_FILES['uploadedfile']['name'] Must have the value of Name attribute of your file field

提交回复
热议问题