Upload excel file codeigniter |
I'm trying to upload excel file. But it's not working. Please check my script
Code: function proses() my mimes Code: 'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/vnd.ms-excel', 'application/msword', 'application/x-zip'), 'word' => array('application/msword', 'application/octet-stream'), When i'm upload file. I always get this result `The filetype you are attempting to upload is not allowed.` The result of `print_r($this->upload->data());` Code: Array (04-21-2016, 07:46 PM)bobykurniawan Wrote: I'm trying to upload excel file. But it's not working. Please check my script Did you forget add enctype="multipart/form-data" like this ? <form action="your controller" method="post" enctype="multipart/form-data"> |
Welcome Guest, Not a member yet? Register Sign In |