I want to download all uploaded files from database using single click. is it possible? I am having a single file download. I modify some changes not working.
Controller
$fileInfo = $this->User_Model-
>getRows();
$file='uploads/files/'.$fileInfo[0]
['file_name'];
force_download($file,NULL);
Model
$this->db->select('*');
$this->db->from('upload_ins');
$query = $this->db->get();
return $query->result_array();
Suggestion please.