我正在使用codeigniter创建推荐链接但我没有得到它,然后我通过调用引用链接上的最后一个值来使用另一种方法来显示在表单字段中。
我使用下面的代码,但它不起作用,并在输入字段中显示为空。
$idd = $this->uri->segment(3);
<input type="text" value="<?php echo $idd; ?>">
答案 0 :(得分:1)
我将链接从http://localhost/gwallet/register/?ref=a@a.a更改为http://localhost/gwallet/register?id=a@a.a并更改了
$idd = $this->uri->segment(3);
到
$idd = $this->input->get('id');
答案 1 :(得分:0)
你的问题对我来说不够明确。你加载了url helper吗?
$this->load->helper('url');
由于我没有足够的声誉来评论我需要发布答案:(