tp怎么根据传的参数查询数据?
程序员文章站
2022-05-17 08:18:22
...
比如一个搜索表单根据用户输入的id值搜索name字段下的对应的名字 这个应该怎么查询呢?我只会写这么一点 tp里面传值不知道该怎么弄 怎么传值怎么接收?
$qq->field('name');
$info=$qq->select();
$this->assign('info',$info);
$this->display();
回复内容:
比如一个搜索表单根据用户输入的id值搜索name字段下的对应的名字 这个应该怎么查询呢?我只会写这么一点 tp里面传值不知道该怎么弄 怎么传值怎么接收?
$qq->field('name');
$info=$qq->select();
$this->assign('info',$info);
$this->display();
html
php
public function search(){
$name=I("post.name");
$info=M("qq")->where('name like %'.$name.'%')->select();
var_dump($info);
}
差不多就是这样,tp的文档还是很容易懂的。
$where['id']=123;
$info=$qq->where($where)->find();
具体的应该参考手册:
http://document.thinkphp.cn/manual_3_2.html
表单提交,直接GET,POST接收,或者I方法
看文档
http://document.thinkphp.cn/manual_3_2.html#input_var