I am working on a web application where users can upload different files MS Word (.doc and .docx), Excel (.xls and .xlsx), Power point, PDF, text files and Rich Text Files (.rtf).
As part of the application flow I would like to display a preview of the contents of the files in an IFrame, HTML best but I can go with text, using a PHP class
The approach I am using is:
Identify the extension of each file
Process each file differently
Display the text or HMTL
Is there any library that does this?
UPDATE:
Posted my final solution as an answer instead of updating the question