I was working in job portal project, in job portal website, we give options to jobseekers upload their resume in .doc, .rtf, .txt and .pdf formats. We’re getting lots of request from our users for uploading resumes in .docx file format. after we decided to allow upload their resumes in .docx file format. At that time I don’t know how to read the docx file using php. Finally I read docx file using php. Here i place the read docx file using php code. Use this code and read docx file using php. <?php function read_file_docx($filename){ $striped_content = ''; $content = ''; if(!$filename || !file_exists($filename)) return false; $zip = zip_open($filename); if (!$zip || is_numeric($zip)) return false; while ($zip_entry = zip_read($zip)) { if (zip_entry_open($zip, $zip_entry) == FALSE) continue; if (zip_entry_name($zip_entry) != "word/document.xml") continue; $content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)); zip_entr...