doc files
$filename = 'ahfdghasfdh.doc';
header('Content-type: application/msword');
header('Content-Disposition: inline; filename="testqq"');
@readfile($filename); 
I tried this code its not working. How to open the .doc files on browser using php.
 
     
    