I have attached outlook msg file in php application. I am storing that file in sql server database.
Now i want to open and display it from browser.
I tried
if($ext=="msg") { header("Content-Type: text/Calendar"); header('Content-Disposition: inline; filename='. basename($filename)); echo base64_decode($file); }