从链接表单输入

发布于 2024-09-26 02:13:52 字数 365 浏览 3 评论 0原文

所以我有:

<input type="text" id="keyword" placeholder="placeholder" value="" />

根据链接定义值的最佳方法是什么?

IE。

http://mysite.com/valueplacer?=thisisthevalue

这样做:

<input type="text" id="keyword" placeholder="placeholder" value="thisisthevalue" />

谢谢!

So I have:

<input type="text" id="keyword" placeholder="placeholder" value="" />

What is the best way to go about defining the value based on the link?

ie.

http://mysite.com/valueplacer?=thisisthevalue

Does this:

<input type="text" id="keyword" placeholder="placeholder" value="thisisthevalue" />

Thanks!

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

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

发布评论

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

评论(1

黒涩兲箜 2024-10-03 02:13:52
<input type="text" id="keyword" placeholder="placeholder" value="<?php echo htmlspecialchars($_GET['q']); ?>" />

假设您要在查询字符串中放置一个 q 作为变量的键。这意味着查询字符串将类似于

http://mysite.com/valueplacer?q=thisisthevalue

htmlspecialchars() ,这是为了安全起见。

如果您确实希望 URL 看起来像这样,则需要解析 $_SERVER['REQUEST_URI']

建议这样做。只需按照预期方式使用 GET 参数即可。

<input type="text" id="keyword" placeholder="placeholder" value="<?php echo htmlspecialchars($_GET['q']); ?>" />

This is assuming that you are going to place a q there in the query string, as the key for the variable. This means the query string will look like

http://mysite.com/valueplacer?q=thisisthevalue

The htmlspecialchars() is for security.

If you actually do want your URL to look like that, you will need to parse $_SERVER['REQUEST_URI'].

I would not recommend doing it like that. Just use GET params as how they were intended.

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