display .msg file in browser using php

后端 未结 3 1440
花落未央
花落未央 2021-01-16 06:02

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

3条回答
  •  粉色の甜心
    2021-01-16 06:47

    if($ext=="msg")
      {
        header("Content-Type: text/Calendar");
        header('Content-Disposition: inline; filename='. basename($filename));
        echo base64_decode($file);
      }
    

提交回复
热议问题