|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
怎样学习,大家都知道编程是1门很枯燥的事业,所以大家一定要有兴趣,可能刚开始打算学的时候是因为别人说php有多好,php多么流行,但是后来伴随着学习的深入,你的这些分页|显示 class.php:
<?
/*
-----------------------------------------------------------------------------------------------
称号:TurnPage
感化:分页显示
成员函数:
Entrance():类的进口,参数是一切成员函数的参数
SelectData($connection,$query):选择数据的函数,前往一个数组
ShowData($array,$i,$j):显示各个字段值的函数,前往一个值
MakeTable($array,$intPageBegin,$intPageEnd):生成表格的函数,依据要显示的字段的个数生成响应的表格,参数分离是:数组,每页入手下手的信息序号,每页停止的信息序号
MakeLink($parameter=null):显示翻页的链接,参数可选
GetFileName(): 掏出以后履行文件名字,前往文件名
函数之间的关系:
-----------------------------------------------------------------------------------------------
*/
class TurnPage
{
var $strArray;
var $cols;
var $rows;
var $strFieldName;
var $intPageBegin;
var $intPageEnd;
function Entrance($connection,$query)
{
$myArray=$this->SelectData($connection,$query);
$this->GetFileName();
$this->MakeLink($parameter=null);
$this->MakeTable($myArray,$this->intPageBegin,$this->intPageEnd);
}
function SelectData($connection,$query)
{
$result=@mysql_query($query,$connection) or die("unable to select the data!");
$intFieldsNum=mysql_num_fields($result);
for($a=0;$a<$intFieldsNum;$a++) //获得选择的各个字段的名字
{
$this->strFieldName[$a]=mysql_field_name($result,$a);
}
$this->cols=$intFieldsNum;
$count=0;
while($rows=mysql_fetch_row($result))
{
for($i=0;$i<$intFieldsNum;$i++)
{
$data[$count][$i]=trim($rows[$i]);
}
$count++;
}
$this->rows=count($data);
$this->strArray=$data;
return $this->strArray;
}
function ShowData($array,$i,$j)
{
return $array[$i][$j];
}
function MakeTable($array,$intPageBegin,$intPageEnd)
{
echo "<table border=0 width=100% align=center cellspacing=1 cellpadding=5 bgcolor=#004080>";
echo "<tr height=20 bgcolor=#0080C0 align=center>";
for($m=0;$m<$this->cols;$m++)
{
echo "<td><font color=white>".$this->strFieldName[$m]."</font></td>";
}
echo "</tr>";
for($i=$intPageBegin;$i<$intPageEnd;$i++)
{
if ($i%2==0)
{
$bgColor="#D2F0FF";
}
else
{
$bgColor="#ffffff";
}
echo "<tr bgcolor=".$bgColor." align=center onMouseOver=this.style.backgroundColor=@##FFCC66@# onMouseOut=this.style.backgroundColor=@#@# onClick=this.style.backgroundColor=@##cccccc@#>";
for($j=0;$j<$this->cols;$j++)
{
echo "<td>".$this->ShowData($array,$i,$j)."</td>";
}
echo "</tr>";
}
echo "</table>";
}
function GetFileName()
{
$strPath=$_SERVER[@#PHP_SELF@#];
$strFileName=trim(substr($strPath,(strrpos($strPath,"/")+1)));
return $strFileName;
}
function MakeLink($parameter=null)
{
if($parameter==null)
{
$strParam=null;
}
else
{
$strParam=$parameter;
}
if($_GET["intPage"]==null)
{
$intPage=1;
}
else
{
$intPage=trim($_GET[@#intPage@#]);
}
$intPerPage=10;
$total=$this->rows;
$strFile=$this->GetFileName();
$intPageBegin=$intPerPage*$intPage-$intPerPage;
$this->intPageBegin=$intPageBegin;
if ($intPage*$intPerPage<$total)
{
$intPageEnd=$intPageBegin+$intPerPage;
}
else
{
$intPageEnd=$total;
}
$this->intPageEnd=$intPageEnd;
echo "<table width=100% border=0><tr><td width=60% align=left>信息总数:".$this->rows."</td><td width=20%> ";
if($intPage>1)
{
echo "<a href=".$strFile."?intPage=".($intPage-1).">上一页</a>";
}
echo "</td><td width=20%> ";
if ($intPage*$intPerPage<$total)
{
echo "<a href=".$strFile."?intPage=".($intPage+1).">下一页</a>";
}
echo "</td></tr></table>";
}
}
?>
test.php:
<?
include("../common/connection.php"); //毗连数据库的操作
include("../common/class.php"); //把下面的文件包括最近
$query="select * from uphoto order by intUID asc";
$test=new TurnPage;
$test->Entrance($connection,$query);
?>
没有人会喜欢和见异思迁的人交朋友,因为这种人太不安分,太不可靠,因此,你必须要强迫自己完成自己的目标,哪怕可能会很难受,也得坚持,毅力就是这么锻炼出来的。 |
|