重定向在 codelgniter 中不起作用
我正在使用 codelgniter,我想将以下 3 个参数传递给 site_url()。但这只需要方法名称而不是参数......我如何传递这些参数。请帮我
function report_del() {
$island = $this->tables($this->input->post('island'));
$prefix = $this->tables($this->input->post('prefix'));
$date = $this->tables($this->input->post('date'));
redirect(site_url('admin/admin/dateandprefix/').$date.'/'.$prefix.'/'.$island);
//$segments = array('admin/admin/dateandprefix/',$date,$prefix,$island);
//redirect(site_url($segments));
}
I am using codelgniter and i want to pass the below 3 parameters to site_url().But this take only the method name not the parameters.... How can i pass these parameters. Please help me
function report_del() {
$island = $this->tables($this->input->post('island'));
$prefix = $this->tables($this->input->post('prefix'));
$date = $this->tables($this->input->post('date'));
redirect(site_url('admin/admin/dateandprefix/').$date.'/'.$prefix.'/'.$island);
//$segments = array('admin/admin/dateandprefix/',$date,$prefix,$island);
//redirect(site_url($segments));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果代码是复制粘贴的,单引号有错误
If the code is copy pasted, there is an error in the single quote
你犯了一个错误。使用这样的网站网址。
欲了解更多详情,您可以查看此链接
用户指南
希望有所帮助。
you are making a mistake . use site url like this .
for more details you can view this link
user guide
Hope this help.
试试这个:
Try this :
如果您使用的是 CI4
然后在基本使用和/公共之后使用
http://localhost/文件夹名称/public
然后就可以正常工作了
If you are using CI4
Then use in base use and/public after that
http://localhost/foldername/public
then it work fine