Use PHP to create a DOC file on a Unix Box based on an HTML webform selection(使用 PHP 在基于 HTML 网络表单选择的 Unix Box 上创建 DOC 文件)
问题描述
我有一个 HTML 文件,其中包含一个包含多个问题的网络表单,这些问题的回答是是"/否".
I have an HTML file which contains a webform with multiple questions which have a YES / NO responses.
如果问题的答案是是",我希望将预定义的(每个问题)文本部分写入服务器上的 DOC 文件,但仅在按下提交按钮后(这样,如果用户改变主意并将答案形式从是"更改为否",我不必重新编写文档).
If the question has a YES answer, I would like a predefined ( per question ) section of text to be written to a DOC file on the server, but only AFTER the submit button has been pressed ( this way, if the user changes their mind and changes an answer form YES to NO, I won't have to re-write the doc ).
当用户点击提交后,文件应显示为下载.
When the user has clicked Submit, The file should be presented as a download.
任何想法
推荐答案
你只需要像这样将你的 html 表单链接到一些脚本(php、jsp、...)
you only have to link your html form to some script (php, jsp, ...) like this
<form action="/myscript.php" method="post">
YOUR FORM
<input type="submit" value="Send Form">
</form>
然后脚本完成整个工作...这里有一些 php 示例:
Then script does the whole work...here are some examples for php:
- 在 Linux 中使用 PHP 创建 Word 文档
- 在 PHP 中读/写 MS Word 文件
这篇关于使用 PHP 在基于 HTML 网络表单选择的 Unix Box 上创建 DOC 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 PHP 在基于 HTML 网络表单选择的 Unix Box 上创建 DOC 文件
基础教程推荐
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01