php经典分页类
类数据库
{
公共 $conn,$db,$table,$user,$host,$unm,$pwd;
公共 $res;
公共 $char;
公共$linkType;
函数 __construct($linkType=false,$char="gb2312")
{
$this->linkType=$linkType;//设置连接类型
$this->char=$char;//设置连接校对字符
$this->db=DB;
$this->user=USER;
$this->host=HOST;
$this->unm=UNM;
$this->pwd=PWD;
if($this->linkType)
{
$this->conn=mysql_pconnect($this->host,$this->unm,$this->pwd) or die("数据库连接失败");
}
否则
{
$this->conn=mysql_connect($this->host,$this->unm,$this->pwd) or die("数据库连接失败");
}
mysql_select_db($this->db);
mysql_query("设置名称".$this->char);
}
函数查询($sql,$type="true")
{
//$type:默认的操作。 指代select操作
$this->res=mysql_query($sql) or die("SQL语句错误!请重新检查");
$row=$type?mysql_num_rows($this->res):mysql_affected_rows();
$result["res"]=$this->res;
$结果["行"]=$行;
返回$结果;
}
//fetch()方法:获取所有的记录,并写入磁盘
函数 fetch($sql)
{
$res=self::query($sql);
while ($rs=mysql_fetch_array($res["res"]))
{
$结果[]=$rs;
}
返回$结果;
}
//获取下一条记录
函数 fetchNext($filed,$currenID,$table)
{
$sql="select * from $table where $filed>$currenID limit 0,1 ";
返回 self::fetch($sql);
}
//获取前一条记录
函数 fetchPre($filed,$currenID,$table)
{
$sql="select * from $table where $filed
返回 self::fetch($sql);
}
}
类页面扩展了数据库
{
公共 $currentPage,$totalRecord,$totalPage,$pageSize;
公共 $start;
公共 $flag;
公共$sql;
函数 __construct($sql,$pagesize=5,$flag="page")
{
$this->sql=$sql;
$this->pageSize=$pagesize;
$this->flag=$flag;//设置翻页链接标识符
$row=parent::query($sql);
$this->totalRecord=$row["row"];
$this->totalPage=ceil($this->totalRecord/$this->pageSize);
$page=$_REQUEST[$this->flag];
if($page
{
$this->currentPage=1;
}
否则
{
$page>$this->totalPage?$this->currentPage=$this->totalPage:$this->currentPage=$page;
}
$this->start=($this->currentPage-1)*$this->pageSize;
}
// 显示分页列表
函数显示($page=10)
{
$str.='