摘要:
<?phpclass Page {private $table;//查询的表private $thisPage;//当前页private $arr_re;//返回结果数组private $limit;//每页显示的行数private $count;//表总的记录数private $reStr;//返回的分页字符串private $baseName;//function __construct($table){$this->table=$table;$sql='select count(*) from '.$table;$res=mysql_query($sql);$ 阅读全文