public function newslist()}$this->assign('news',$info);
$count = $news->where(array('type'=>'news','status'=>'1'))->count();
$page = new page($count,$listrows);
$show = $page->show();
$this->assign('page',$show);
$this->display();
}
前端獲取資料:
<td style
="width:85%;padding-left:15px;line-height:30px;"
>
......
td>
thinkphp讀取資料庫資料:
<?php//讀取一行資料
$user=m("user");
$data=$user->where("status=1 and name="thinkphp"")->find();
dump($data);
//讀取資料集合
$user=m("user");
$list = $user->where('status=1')->order("create_time")->limit(10)->select();
//讀取字段值
$user=m("user");
$nickname=$user->where("id=3")->getfild('nickname');
//如果傳入多個字段
$user=m("user");
$list=$user->getfild('id,nickname');
//兩個欄位的情況下返回的是array(`id`=>`nickname`)的關聯陣列,以id的值為key,nickname字段值為value。
Thinkphp 資料操作指南 查詢技巧
字段別名 可以在查詢的字段裡面使用別名,例如 以mysql為例,我們可以使用 user where status 1 field id,email,username as name limit 10 findall 可以生成下面的sql語句 select id,email,username as n...
ThinkPhp查詢資料庫的幾種方式
thinkphp內建了非常靈活的查詢方法,可以快速的進行資料查詢操作,查詢條件可以用於讀取 更新和刪除等操作,主要涉及到where方法等連貫操作即可,無論是採用什麼資料庫,你幾乎採用一樣的查詢方法 個別資料庫例如mongo在表示式查詢方面會有所差異 系統幫你解決了不同資料庫的差異性,因此我們把框架的...
thinkphp 關聯查詢 資料比對 exp
我查詢資料是 關聯兩張表 乙個是需求表 乙個 表 同乙個公司 既可以發布需求 又可以 現在我以 商的身份 查詢有那些需求 但必須去除自己的 遇到乙個問題 就是 需要關聯 需求表 和 表的 公司id 使用thinkphp 的關聯查詢 map demanid.company id array neq s...