Example #1
0
 public function index()
 {
     import("ORG.Util.Page");
     $db = new MsgsModel();
     $Page = new Page($db->count(), 15);
     $page_nav = $Page->show();
     $rs = $db->order("flag asc,time desc")->limit($Page->firstRow . ',' . $Page->listRows)->select();
     $this->assign('rs', $rs);
     $this->assign('page_nav', $page_nav);
     $this->display("Index:msg");
     //dump($rs);
 }