Home  >  Article  >  Backend Development  >  ThinkPHP获取当前页面可能地址id值

ThinkPHP获取当前页面可能地址id值

WBOY
WBOYOriginal
2016-06-23 13:43:301138browse









想获取当前地址栏的id值,并作为隐藏属性保存到新的数据表中

原代码:










下面的生成的提示错误的程序



回复讨论(解决方案)

view 方法的action中assign $_GET['id']

尽量发源码,不要发图片。

thinkphp应该有帮助说明,可以看下他们的官网和论坛和手册!!

添加页面的url加上id参数,add的action通过$this->assign('id',$_GET['id'])设置;add.html加入隐藏域,提交的时候,获取id即可。

添加页面的url加上id参数,add的action通过$this->assign('id',$_GET['id'])设置;add.html加入隐藏域,提交的时候,获取id即可。




具体一点,本人基本上就没有基础啊

view 方法的action中assign $_GET['id']



具体一点好不》?谢谢啦

直接在模板页:

<input type="hidden" name='id" value="{:$_GET['id']}" />

看这里、这样可以。。

$id=$_REQUEST['pid'];

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn