thinkphp 我想实现的功能是当我点击一个页面中的ID号时,跳转到另一个页面,在另一个页面中显示这个ID对应
我想实现的功能是当我点击一个页面中的ID号时,跳转到另一个页面,在另一个页面中显示这个ID对应的另外一张表的ID里里面的内容!讲第二张表的内容显示到在页面上!
这个是Action中的方法:
public function menu()
{
$category=M("category");
//$query['pid']=$_GET["pid"];
$list=$category->table('pos_category cate,pos_pizza pizz')->where('cate.pid=pizz.category_id')->select();
$this->assign('list',$list);
$this->display();
}
这个方法里面的table查询语句!把所有第一表中与第二表中对应的ID内容!全部显示出来了!!哎!!!这个方法应该怎么写!才能实现我要的效果。
我才学习php!!所有请教各位前辈!!获取获取第一张表的ID与第二张表的ID!然后显示第二张表ID的内容。。。。
<volist name='list' id='vo'>
<tr>
<td class="doc_checkbox"><input type="checkbox" name=""></td>
<th class="doc_content"><a href="__URL__/id/"></a></td>
<th class="doc_content">激孙宏</td>
<th class="doc_content"><a href="#">删除</a><凯春/td>
</tr>
</volist>
在前面加上"id/"上明册面我已经加上了。
然后在你要接收id的页面写 $cid=$_GET["id"] $cid就是你要的值。
不知道