在 URL 中使用连字符

发布于 2024-12-12 01:37:47 字数 257 浏览 0 评论 0原文

所以我有一个脚本,它允许我使用输入表单将一些文本输入到数据库中,显然这个文本可能有空格,然后我有一个脚本,它将根据该文本获取数据并在页面上回显文本其行中的其他详细信息。

我的问题是,我该如何处理空格,如何根据其行在数据请求中包含连字符或加号,如下所示:

mytext.php?text=Hello-There

并允许选择查询不将连字符视为文本的一部分(否则它不会选择该行 - 必须准确)

我该怎么做?

So I have a script that will allow me to input some text into the database using an input form, obviously this text might have spaces in, I then have a script that will fetch data according to that text and echo the text on a page with the other details in its row.

My problem is, what do I do for the spaces, how can I include hyphens or plus signs in my request for the data according to to its row like so:

mytext.php?text=Hello-There

And allow the Select query to not account for the hyphens as part of the text (or else it will not select the row - has to be exact)

How would I do this?

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

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

发布评论

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

评论(1

我纯我任性 2024-12-19 01:37:47

如果我没猜错的话,您可以使用以下内容来请求

$url = "mytext.php?text =" . urlencode($usrinput);

,然后为了处理请求,您可以使用

urldecode($_GET['text']);

If I get you right, you can use the following for request

$url = "mytext.php?text =" . urlencode($usrinput);

and then for processing the request, you can use

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