假设我的 php 代码如下:
<form method="post" action="htmltortf.php">
<table>
<tr>
<td>Candidate Name:</td>
<td colspan="3"><textarea cols="40" rows="10" name="textArea"><?php echo $var = isset($_POST['textArea']) ? $_POST['textArea'] : ''; ?></textarea></td>
</tr>
<tr>
<td colspan="3"><input type="submit" name="submit" value="submit" /></td>
</tr>
</table>
<?php
if(isset($_POST['submit']))
{
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=html2doc.doc");
}
?>
我需要的:
我希望当用户单击按钮提交时,它会生成到 Ms word 但对于 textArea 我不希望它像边框一样显示它的样式或......我只想显示它的值。例如: This is the textArea in the Ms word file
.
问题:
当我转换它时,它仍然显示 textArea 的样式,如边框和滚动......
我不知道如何解决这个问题?请帮助我,
谢谢。