更新数据库
DB::update('k_200ka',"kahao={$_REQUEST['cardno']}",$contact)
说明:1、表名 2、条件 3、传值
传值可以不填,默认读取数据:$_REQUEST
总记录数
$totalRows = DB::getRows('usertel', $wheres);//总记录数
说明:1、表名 2、条件
查询数据集
$GLOBALS['pVars']['mysqldata'] = DB::select("select * from ad_yonghu where id={$_REQUEST['id']} ");
查1条数据
$GLOBALS['pVars']['sortname'] = DB::select("select cnname CNT from newsort where id={$GLOBALS['pVars']['d'][0]['sid']}",-1);
如果为空值
if(empty($_REQUEST['id']))
$this->alertGoto('页面不存在!','/');
$GLOBALS['pVars']['d'] = DB::select("select * from news where isshow=0 and id={$_REQUEST['id']}");