コード例 #1
0
ファイル: NoteAction.class.php プロジェクト: cjmi/miniblog
 public function index()
 {
     import("ORG.Util.Page");
     $db = new ArticlesModel();
     $page = new Page($db->count(), 8);
     $page->setConfig('header', '篇日记');
     $rs = $db->relation(true)->order('id desc')->limit($page->firstRow . ',' . $page->listRows)->select();
     $this->assign('rs', $rs);
     $this->assign('page_nav', $page->show());
     $this->display("Index:note");
     //dump($rs);
     //echo $db->getLastSql();
 }