使用 PHP 基于 HTML Web 表单选择在 Unix Box 上创建 DOC 文件

问题描述 投票:0回答:1

我有一个 HTML 文件,其中包含一个包含多个问题的网络表单,这些问题的答案是“是”/“否”。

如果问题的答案是“是”,我希望将预定义的(每个问题)文本部分写入服务器上的 DOC 文件,但只有在按下提交按钮之后(这样,如果用户更改了他们的介意并将答案从“是”更改为“否”,我不必重新编写文档)。

当用户单击“提交”时,该文件应以下载形式显示。

任何想法

<form method="post" id="qform" name="qform"><label for="employe" class="blue" id="employelabel" name="employedlabel">Were you employed</label>
  <select name="employedlastyear" class="bluebox" id="employed" type="select">
    <option value="No">No</option>
    <option value="Yes">Yes</option>
  </select>
  <p><label for="bfits" class="blue" id="bfitslabel" name="bfitslabel"></label><label for="bfits" class="blue" name="bfitslabel">Did you get bfits</label>
    <select name="bfits" class="bluebox" id="bfits" type="select">
      <option value="No">No</option>
      <option value="Yes">Yes</option>
    </select>
  </p>
  <form>

php html webforms ms-word doc
1个回答
0
投票

您只需将 html 表单链接到某个脚本(php、jsp,...),如下所示

<form action="/myscript.php" method="post">
   YOUR FORM
   <input type="submit" value="Send Form">
</form>

然后脚本完成全部工作...以下是 php 的一些示例:

© www.soinside.com 2019 - 2024. All rights reserved.