Codeigniter file upload not working

前端 未结 2 686
Happy的楠姐
Happy的楠姐 2021-01-18 19:42

I write code for upload a image file. But it always show You did not select a file to upload. This is my code.

view



        
2条回答
  •  独厮守ぢ
    2021-01-18 19:42

    At your PHP change

    $this->upload->do_upload()
    

    to

    $this->upload->do_upload("add_1")
    

    where "add_1" is your input name attribute.

    Codeigniter UPLOAD library docs

    P.S. At your HTML the Label attribute for="" is targeting input ID so you have to add id to your input.

提交回复
热议问题