Display document files in html

9.5k Views Asked by At

I am working on a job site where job seekers can upload their resume . When editing their profile , I want them to view their previous resume . I used <iframe> for this purpose , but instead of displaying the doc file,it shows an option to download . So how can I display their resume (in .doc,.docx and .odt format)

3

There are 3 best solutions below

0
On BEST ANSWER

You can use php's fopen function, however there is a lot of unwanted code within a word doc file. Maybe a quick search could help you with what you want:

Reading/Writing a MS Word file in PHP

It would require a lot of effort. best bet is to create a wysiwyg editor instead of an upload that they can copy and paste to

0
On

You need to embed the src, if you were to embed the source, it stops Adobe Reader or what not, taking over the browser entirely, and actually views it in the window, this should help:

Recommended way to embed PDF in HTML?

I know this is for PDF's but I would assume you can use it for .doc too.

0
On

You can't display .doc,.docx and .odt format files on browser. Basically a browser is designed for parsing HTML files only. You can use Flash to display doc inside your browser,