pagination($total, $pindex, $psize); $basicset = $this->basicset(); $title = '最新文章'; include $this->template('article/index'); } public function detail() { global $_W; global $_GPC; $id = intval($_GPC['id']); $article = pdo_fetch('SELECT * FROM ' . tablename('ewei_shop_system_article') . ' AS a' . "\n" . ' LEFT JOIN ' . tablename('ewei_shop_system_category') . ' AS c ON a.cate = c.id' . "\n" . ' WHERE a.id = ' . $id); $articles = pdo_fetchall('SELECT * FROM ' . tablename('ewei_shop_system_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('article/detail'); } } ?>