用户
 找回密码
 入住 CI 中国社区
搜索
查看: 3147|回复: 6
收起左侧

[已解决] url获取id问题。。。

[复制链接]
发表于 2010-3-15 13:28:01 | 显示全部楼层 |阅读模式
function content(){
        $this->load->model('minfo');
        $data['content']        =        $this->minfo->get_content();
        $this->load->view('detil',$data);
}

function get_content($id){
        $query        =        $this->db->get_where('news',array('id'=>'$id'));
        return $query->result();
}

<?php foreach ($content as $res):?>
<li><a href=""><?php echo $res->title?></a></li>
<?php endforeach;?>

a href 后面应该怎么写?
发表于 2010-3-15 13:36:18 | 显示全部楼层
啊?你链到到哪个控制器的哪个方法啊???
发表于 2010-3-15 13:37:21 | 显示全部楼层

就是你content里面的id啊

$res->id
发表于 2010-3-15 13:37:44 | 显示全部楼层
你之前做过web开发的没?
发表于 2010-3-15 13:46:59 | 显示全部楼层
回复 1# srxsrw


    <li><a href="<?php echo site_url('控制器/方法/'.$res->id);?>"><?php echo $res->title?></a></li>
 楼主| 发表于 2010-3-15 13:47:26 | 显示全部楼层
没搞懂。。。。
我想知道如何获取到url里get到的id,然后传给get_content这个方法
 楼主| 发表于 2010-3-15 14:36:47 | 显示全部楼层
终于自己搞定了。。。

本版积分规则