使用codeigniter

时间:2017-01-03 23:42:32

标签: php codeigniter

我正在使用codeigniter创建推荐链接但我没有得到它,然后我通过调用引用链接上的最后一个值来使用另一种方法来显示在表单字段中。

  

http://localhost/gwallet/register/?ref=a@a.a

我使用下面的代码,但它不起作用,并在输入字段中显示为空。

$idd = $this->uri->segment(3); 
<input type="text" value="<?php echo $idd; ?>">

2 个答案:

答案 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'); 

由于我没有足够的声誉来评论我需要发布答案:(