你好我想问从url获取值参数到我的控制器
我像这样从javascript设置重定向url,
window.location.href = '<?php echo base_url().'index.php/form_tambahasset'?>' + '?lang=' + lg + '&lat=' +lt;
我需要把参数带到我的下一页lang
,lat
http://localhost/BTS_CI/index.php/form_tambahasset
如果我将重定向网址设置为这样,
http://localhost/BTS_CI/index.php/form_tambahasset/lang/107.39410400390625/lat/-6.671700384923497
它必须是404页面未找到。
我怎样才能得到值参数lang
和lat
?我现在的位置,$config['uri_protocol']
但REQUEST_URI
我试图改变PATH_INFO
它对我不起作用。
我尝试$this->uri->segment(3, 0);
过parse_str($_GET['lat'], $_GET);
但仍然无法获得我的参数。
我的页面
http://localhost/BTS_CI/index.php/form_tambahasset?lang=107.39410400390625&lat=-6.671700384923497
做得很好,但我需要得到我的参数值
我的问题有什么解决方案吗?请帮我。谢谢你