I have the following code to download the pdf file after clicking the hyperlink for the pdf file, now I would like to change the action to open the pdf file in browsing new tab instead of downloading the file to local, could you help to advise how to update it?
public function downloadFile($fileID)
{
$this->load->model('Mod_UploadFile');
$this->load->helper('download');
$result = $this->Mod_UploadFile->getFileByID($fileID);
if($result)
force_download($result['FILE_NAME'], $result['UPLOAD_FILE']->load(), true);
else
echo "404 Not Found!";
}