如何使用表单将表单外部的变量发送到 PHP 文件?

发布于 2024-12-03 07:59:32 字数 210 浏览 0 评论 0原文

我有一个页面,其中有一个表单,该表单被发送到一个 php 文件,该文件呈现一封包含信息的电子邮件并将其发送。

但是,我还需要发送 url (form.php?a=12&b=hello) 中的变量。

我不喜欢使用具有此值或类似内容的隐藏输入字段的想法。有没有一种方法可以在电子邮件渲染脚本中仅使用 $_REQUEST($a) 和 $_REQUEST($b) 来发送它?

I've got a page where I have a form that gets sent on to a php file that renders an email with the information and sends it on.

However, there are variables in the url (form.php?a=12&b=hello) that I also need to send.

I don't like the idea of having a hidden input field with this value or something like this. Is there a way to send it in a way that I can just $_REQUEST($a) and $_REQUEST($b) in the email rendering script?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

妥活 2024-12-10 07:59:32

是的,你可以。 $_REQUEST 包含 $_POST$_GET 数据,因此您已经走在正确的轨道上;

$_REQUEST['a']; // from the url
$_REQUEST['field_1']; // posted from <input name="field_1" />

Yes, you can. $_REQUEST contains both the $_POST and $_GET data, so you were already on the right track;

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