来自 uri 的 Codeigniter
好的,我有这个问题: 我正在创建一个搜索功能,为了正确执行此操作,我必须将搜索字段中写入的单词传递给 uri,例如。第三段。但由于 Codeigniter 只支持 post 而不支持 get 方法(它可以启用,但我正在寻找解决办法),我需要通过 post 将该变量传递到 uri。有人可以帮助我吗?
OK i have this problem:
I'm creating a search function and to do that correctly i have to pass the word that is written in search field to uri eg. third segment. But since Codeigniter only supports post and not get method (it can be enabled but I'm looking for way around) I need to pass that variable via post to uri. Can anybody help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
POST 到控制器,然后重定向到 URL 中包含该单词的页面。
search.php
多田。
POST to a controller then redirect to the page with the word in the URL.
search.php
Tada.