**文件:page.class.php**
#### * 基本语法:
1、控制器语法
~~~
$pg=new page("select * from content order by id desc"); //获取页面所需数据
$article_list=$pg->get_list(20);//设定每页展示多少条数据
$pagelink=$pg->get_page("/".$url."/list_{page}.html");//设置页码链接
~~~
2、模板语法
~~~
<div class="page_link">{$pagelink}</div>
~~~