Home > Backend Development > PHP Tutorial > thinkPHP 模糊查询问题,代码如下

thinkPHP 模糊查询问题,代码如下

WBOY
Release: 2016-06-23 14:23:05
Original
1026 people have browsed it

thinkPHP thinkphp select

$reg = M('doctor');
  $data =$_POST['text'];

      $map['name'] = array('like',"%$data%"); 
     $result = $reg->where($map)->select();
$this->doctor = $result; 
  $this->display('search');
不知道哪个地方出了错,不显示查询结果,也不报错

回复讨论(解决方案)

不懂PHP

直接调试出来sql echo $m->GetLastSql()

还是不行,直接报错了

认真的查看代码,然后先直接echo出sql语句看一下!

echo出来的sql语句没有错,在mysql里能查出来结果,但是在dreamweaver里就是不显示结果

既然都能找到sql语句了,那接下来一步一步往下测试呀,也没几步了吧!

”在dreamweaver里就是不显示结果 “这句什么意思哦,没明白,dreamweaver能直接带浏览器预览功能吗?

”在dreamweaver里就是不显示结果 “意思是在编辑器里编辑,然后用火狐浏览器调试结果,火狐不显示。但是在Navicat里面,用显示出来的sql语句查询能查出来结果

怎么听起来更像是你的代码兼容性问题

更偏向于html+css+js的兼容性问题

还是不行,直接报错了
提示什么错误?连sql都输出不了。那你检查下你的程序

$this->doctor = $result; ???
什么意思?

向模板赋值不是这样吗
$this->assign('name',$name);

找到原因了,路径问题,谢各位了

$this->doctor = $result; ???
什么意思?

向模板赋值不是这样吗
$this->assign('name',$name);

thinkphp 中那样也表示向模版赋值

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template