pagination($total, $pindex, $psize); $basicset = $this->basicset(); $title = '新闻中心'; include $this->template('news/index'); } public function detail() { global $_W; global $_GPC; $id = intval($_GPC['id']); $article = pdo_fetch('SELECT * FROM ' . tablename('ewei_shop_system_company_article') . " AS a\n LEFT JOIN " . tablename('ewei_shop_system_company_category') . " AS c ON a.cate = c.id\n WHERE a.id = " . $id); $articles = pdo_fetchall('SELECT * FROM ' . tablename('ewei_shop_system_company_article') . " AS a\n WHERE a.status = 1 ORDER BY RAND() DESC LIMIT 4 "); $relevant_top = pdo_fetch('SELECT * FROM ' . tablename('ewei_shop_system_article') . " AS a\n WHERE a.status = 1 ORDER BY RAND()"); $relevant = pdo_fetchall('SELECT * FROM ' . tablename('ewei_shop_system_article') . " AS a\n WHERE a.status = 1 ORDER BY RAND() DESC LIMIT 6 "); $basicset = $this->basicset(); $title = $article['title']; include $this->template('news/detail'); } } ?>