php - when i create docx file with use of file creation.after file i download i got like this please give some idea -
<?php header("content-type: application/vnd.openxmlformatsofficedocument.wordprocessingml.document"); header("content-transfer-encoding: binary"); header('content-disposition: attachment;filename="myfile.docx"'); echo "<html>"; echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=windows-1252\">"; echo "<body>"; echo "<p style=font-family:'$s2';font-size:'$s1'>".$t1."</p>"; echo "<p style=font-family:'$s4';font-size:'$s3'>".$t2."</p>"; echo "<p style=font-family:'$s6';font-size:'$s5'>".$t3."</p>"; echo "</body>"; echo "</html>"; ?>
unable open docx file in ms-office created using php. please me make possible. in advance
Comments
Post a Comment