如何使用表单将表单外部的变量发送到 PHP 文件?
我有一个页面,其中有一个表单,该表单被发送到一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。
$_REQUEST
包含$_POST
和$_GET
数据,因此您已经走在正确的轨道上;Yes, you can.
$_REQUEST
contains both the$_POST
and$_GET
data, so you were already on the right track;