如何自定义“值” PHP 联系表单中的字段

发布于 2024-12-11 06:08:42 字数 370 浏览 0 评论 0原文

请告诉我如何配置我的联系表单字段,以便我可以指定字段的文本。假设我的联系表单位于此处:www.example.com/con.php 因此,如果我想为我的联系表单主题字段指定特定标题......它应该是这样的:

www.example.com/con.php?subject=此文本应自动写入 在字段值中

.. 在这里我上传了一张关于这个的图片..这里> https://i.sstatic.net/hmkwl.png 所以请告诉我如何在 php 联系表单脚本中执行此操作..我可以向您解释清楚吗?谢谢。

please tell me how i can configure my contact form field so that i can specify texts for a field. Suppose my contact form is located here: www.example.com/con.php so, if i want to give a specific title for my contact form subject field...... it should be like this:

www.example.com/con.php?subject=this text should automatically write
in the field value

..
here i upload an image about this..here > https://i.sstatic.net/hmkwl.png
so please tell me how to do it in a php contact form script.. can i make it clear to you? Thankyou.

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

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

发布评论

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

评论(2

酷到爆炸 2024-12-18 06:08:42

将这一行放入您的表单中:

<input name="subject" type="text" value="<?php echo htmlentities($_GET['subject']); ?>"/>

Put this line in your form:

<input name="subject" type="text" value="<?php echo htmlentities($_GET['subject']); ?>"/>
予囚 2024-12-18 06:08:42
<input name="subject"
       value="<?php echo htmlentities($_GET['subject']); ?>"/>
<input name="subject"
       value="<?php echo htmlentities($_GET['subject']); ?>"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文