select count(*) as doyo_total_page from t_article where isshow=1 and ( xiangmudiqu=2 )
执行错误: Unknown column 'xiangmudiqu' in 'where clause'
- /www/wwwroot/wfcqjy.com/include/mysql.php on line 41
36.
if( $result = mysqli_query($this->conn, $sql) ){
37.
return $result;
38.
}else{
39.
$err = mysqli_error($this->conn);
40.
if($err!=''){
41.
42.
syError("{$sql}<br />执行错误: " . $err);
}else{
43.
return TRUE;
44.
}
45.
}
46.
}
- /www/wwwroot/wfcqjy.com/include/mysql.php on line 8
3.
class db_mysql {
4.
public $conn;
5.
public $arrSql;
6.
public function getArray($sql)
7.
{
8.
9.
if( ! $result = $this->exec($sql) )return array();
if( ! mysqli_num_rows($result) )return array();
10.
$rows = array();
11.
while($rows[] = mysqli_fetch_array($result, MYSQLI_ASSOC)){}
12.
mysqli_free_result($result);
13.
array_pop($rows);
- /www/wwwroot/wfcqjy.com/include/syModel.php on line 124
119.
return $this->update($conditions, array($field=>$value));
120.
}
121.
122.
public function findSql($sql)
123.
{
124.
125.
return $this->_db->getArray($sql);
}
126.
127.
public function runSql($sql)
128.
{
129.
return $this->_db->exec($sql);
- /www/wwwroot/wfcqjy.com/include/Functions.php on line 595
590.
}
591.
return $allfields;
592.
}
593.
//统计
594.
function total_page($sql,$v='doyo_total_page'){
595.
596.
$a=syDB('molds')->findSql('select count(*) as '.$v.' from '.$sql);
return $a[0][$v];
597.
}
598.
//支付平台
599.
function payment($pay){
600.
$payment=syDB('payment')->find(array('pay' => $pay),null,'name');
- /www/wwwroot/wfcqjy.com/source/article.php on line 209
204.
if($xiangmudiqu){
205.
$w .=" and ( xiangmudiqu=". $xiangmudiqu ." ) ";
206.
}
207.
$order=' order by orders desc,addtime desc,id desc';
208.
$sql='select id,tid,title,style,trait,gourl,addtime,hits,litpic,orders,mrank,mgold,isshow,htmlurl,htmlfile,description,user,body from '.$this->db.' a left join '.$this->db.'_field b on (a.id=b.aid)'.$w.$order;
209.
210.
$total_page=total_page($this->db.$w);
$this->lists = $this->Class->syPager($this->syArgs('page',0,1),30,$total_page)->findSql($sql);
211.
$pages=$this->Class->syPager()->getPager();
212.
$this->pages=pagetxt($pages);
213.
$list_c=$this->lists;
214.
foreach($list_c as $k=>$v){
- /www/wwwroot/wfcqjy.com/include/Functions.php on line 16
11.
$handle_controller = syClass($__controller, null, $GLOBALS['G_DY']["controller_path"].'/'.$__controller.".php");
12.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
13.
syError('route Error');
14.
exit;
15.
}
16.
17.
$handle_controller->$__action();
if(FALSE != $GLOBALS['G_DY']['view']['auto_display']){
18.
$__tplname = $__controller.$GLOBALS['G_DY']['view']['auto_display_sep'].
19.
$__action.$GLOBALS['G_DY']['view']['auto_display_suffix'];
20.
$handle_controller->auto_display($__tplname);
21.
}
- /www/wwwroot/wfcqjy.com/index.php on line 6
1.
<?php
2.
require("config.php");
3.
$doyoConfig['view']['config']['template_dir'] = APP_PATH.'/template/'.$doyoConfig['ext']['view_themes'];
4.
5.
require(DOYO_PATH."/sys.php");
6.
spRun();