|
视频上的例子中的数据库类
$this->db->where('entry_id',$this->uri->segment(3));
这段是什么意思啊,我总是看不懂,
还有,在view页面中创建一个hidden,它的value怎么动态生成的,就像这样:<form action="http://127.0.0.1/CodeIgniter/index.php/blog/comment_insert" method="post"><input type="hidden" name="entry_id" value="2" />
代码是这样的
<?php echo form_hidden('entry_id',$this->uri->segment(3));?>
$this->uri->segment(3))不是url分段吗,得到的值应该总是3啊,
[ 本帖最后由 degoogle 于 2008-8-20 10:42 编辑 ] |
|