Does not recognize $ _FILES codeigniter

0

I'm trying to send an image using postman and working with codeigniter REST API

test code:

public function profile_post(){
        $file = $_FILES['userfile']['name'];
           $this->response(array('message' => $file),200);
   }

postman output:

{
    "message": null
}

Even though I'm sending you a (userfile,name) image by postman using form-data does anyone know why it does not show me anything?

    
asked by DoubleM 05.06.2018 в 04:30
source

0 answers