Wordpress Php 打印/回显上一页的输入结果

发布于 2024-11-15 23:28:53 字数 127 浏览 2 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万人眼中万个我 2024-11-22 23:28:53

您可以使用表格来执行此操作。创建 HTML 表单,其中包含答案的输入,该答案在提交时提交到 php 文件:

<form action="print.php" method="POST">
     <input type="text" name="user_answer" />
     <input type="submit" value="answer question!" />
</form>

然后有一个 PHP 文件(在本例中称为 print.php);

$answer = $_POST['user_answer'];
echo $answer;

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:

<form action="print.php" method="POST">
     <input type="text" name="user_answer" />
     <input type="submit" value="answer question!" />
</form>

Then have a PHP file (called print.php in this example);

$answer = $_POST['user_answer'];
echo $answer;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文