Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a web application where user can use browser to execute word/excel/pdf files.

I have used scandir() to show list of files of a folder. Now when the user clicks the link, ie;name of the file(.doc, .xls, .pdf etc), the file should open with corresponding application.

The file should not open in browser. It should open normally with corresponding application.

How can I achieve this ?

I would be grateful if I could get any guidance on it.

Thank you

share|improve this question
What have you tried? Have you tried sending the file to the web browser with appropriate filetytpe headers? – Mark Baker Jan 12 at 18:45
For the user to view any file stored on the server it needs to download it first. So you should be sending the files with the correct headers for each file type – Bogdan Jan 12 at 18:46
@MarkBaker Actually I have not tried anything close to it because I really have no idea how to proceed with this. – Elisha Jan 12 at 18:48
Well then, try it and see what happens.... this is really web development 101 – Mark Baker Jan 12 at 18:48
Could you please give me a link where I can see some examples on this? Thank you – Elisha Jan 12 at 18:52
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.