Files not storing in the correct folder

前端 未结 2 1421
醉梦人生
醉梦人生 2021-01-25 21:54

I created a page that can add new records to my database, everything is working fine but when I\'m trying to upload a pdf file, it doesn\'t store to the correct folder. It shoul

2条回答
  •  佛祖请我去吃肉
    2021-01-25 22:17

    That's because you set only to save file name

    $file = $_REQUEST['file'];

    Instead it should be

    $file = "../uploads/".$_REQUEST['file'];

提交回复
热议问题