Is there any way to open un microsoft word file from a link html.? I am trying this , but always that the user click on the link . it start to download. I need thar open then microsoft office which is installed localy
I have tried with this
header('Content-type: application/msword');
header("Content-Length: ".filesize($arquivo));
header("Content-Disposition: attachment; filename=".basename($arquivo));
readfile($arquivo);