Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表单 test.html(使用 dhtmlx 在 JS 中创建,不重要),我想提交给 PHP 脚本 generateReport.php
generateReport.php 使用从 test.html 发布的信息使用 TCPDF 库创建一个 PDF。
如何从 test.html 发布变量,并将页面重定向到填写的 PDF?我宁愿不存储它,但如果我暂时存储它真的不是问题。
尝试使用表单操作将表单发布到 generateReport.php。
只需使用 $_POST ['form_field_name']获取所有表单值
我认为这将帮助您获得所有表单值。