将文件中的帖子保存到msword中

时间:2018-06-05 15:43:56

标签: php html

我想将html表单中的帖子保存为msword文件

<form method="post" action="process.php">
    <text name="comment"></text>
   <input type="submit" name="send" value="submit"/>
</form>

process.php

<?php
 if(isset($_POST['submit']))
   {
    $body=$_POST['comment'];
    $newfile = fopen("essay/last.docx", "w") ;
   $content = "$body";
   fwrite($newfile, $content);

  fclose($newfile);
}
?>

创建的文件不是有效的msword文件。任何帮助表示赞赏

0 个答案:

没有答案
相关问题