在 URL 中使用连字符
所以我有一个脚本,它允许我使用输入表单将一些文本输入到数据库中,显然这个文本可能有空格,然后我有一个脚本,它将根据该文本获取数据并在页面上回显文本其行中的其他详细信息。
我的问题是,我该如何处理空格,如何根据其行在数据请求中包含连字符或加号,如下所示:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没猜错的话,您可以使用以下内容来请求
,然后为了处理请求,您可以使用
If I get you right, you can use the following for request
and then for processing the request, you can use