I have been using codeigniter framework. It was going very with everything except that I can't read my pdf files. When I do try reading, It downloads or saves it instead. I have tried a lot of solutions but didn't work. 
Controller
public function read($name)
{
    $url = base_url().'uploads/'.$name;
    header('Content-type: application/pdf');
    header('Content-Disposition: inline; filename="'.$name.'"');
    header('Content-Transfer-Encoding: binary');
    header('Accept-Ranges: bytes');
     @readfile($url);
}
 
     
     
    