Wordpress Php 打印/回显上一页的输入结果
我正在尝试在 WordPress 中创建一个 php 函数,用户在一个页面上回答问题,然后在点击提交后在下一页上打印他们的答案。
数据不需要收集在只需打印的数据库中,因此它可以显示用户输入的内容。
提前致谢!
I am trying to create a php function in wordpress where a user answers a question on one page and then prints their answer on the next page after they hit submit.
The data does not need to be collected in a database just printed so it shows what the user typed.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用表格来执行此操作。创建 HTML 表单,其中包含答案的输入,该答案在提交时提交到 php 文件:
然后有一个 PHP 文件(在本例中称为 print.php);
You could use a form to do this. Create HTML form with an input for the answer that gets submitted to a php file on submit:
Then have a PHP file (called print.php in this example);