当前位置: 首页 > 图文教程 > 网络编程 > PHP > 文章推荐系统(三)

PHP
书评: PHP和ORACLE基础手册
最小化数据传输――在客户端存储数据
玩转虚拟域名◎+
DOMXML: Expat之外的另一选择
SQLite数据库安全
fckeditor用javascript创建
phplib7.2中文汉化版及调用示例
SQLite语法备忘录
将Oracle 10g内置的安全特性用于PHP
PHP5 & Web Services 系统架构图
解决PHP startup: Unable to load dynamic library的错误
PHP and Web Services
深入研究表单提交方式:GET/POST
php5中XML-RPC函数的使用
一 php与XML、XSLT、Mysql的结合运用,安装篇
二 php与XML、XSLT、Mysql的结合运用,代码篇
设计模式汇总
PHP5的异常处理机制
使用PHP5创建图形巧法(一)
使用PHP5创建图形巧妙方法(二)

PHP 中的 文章推荐系统(三)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 98 ::
收藏到网摘: n/a

=====Article.php====
<?
if(!isset($pagenum)){
$pagenum=1;}
$conn=mysql_connect("localhost","user","password");
mysql_select_db("bamboo");
$sql="select count(*) from article";
$result=mysql_query($sql,$conn);
$count=mysql_result($result,0);
$sign=0;
$lesssign=0;
$pagec=1;
for($icount=0;($icount<$count)&&($sign=0);$icount+=16){
for($i=0;$i<=16;$i++){
if(($icount*16+$i)==$count)
$sign=1;
}
$pagec++;
}
$dispeof=16*$pagenum;
$dispend=16*($pagenum-1);
if($count>=(16*$pagenum))
$dispbeg=16*$pagenum;
else
$dispbeg=$count;
$isdispnum=$count-$dispeof;
if($isdispnum<0){
$lesssign=1;
}
echo"<table width=100%>";
$fuhao="◇ ";
$color=e9eae9;
$iscolor=0;
$lessnum=0;
for($i=$dispbeg;$i>$dispend;$i--){
$sql="select *from article where id='$i'";
$result=mysql_query($sql,$conn);
echo"<tr><td align=left bgcolor=$color>";
echo $fuhao;
echo"<a href=articledisp.php?article_id=$i>";
$obj=mysql_fetch_object($result);
echo $obj->articlename;
echo"</a></td></tr>";
$lessnum++;
if($iscolor==0){
$color=ffffff;
$iscolor=1;
}
else{
$color=e9eae9;
$iscolor=0;
}
}
if($lesssign==1){
for($iless=$lessnum;$iless<=16;$iless++){
echo"<tr bgcolor=$color><td>";
echo $fuhao."<br>n";
echo"</td></tr>";
if($iscolor==0){
$color=ffffff;
$iscolor=1;
}
else{
$color=e9eae9;
$iscolor=0;
}
}
}
echo"</table>";
?>
</td>
</tr>
</table>
<?
echo"<table width=100% bgcolor=00ff00>";
$str="共有";
$str=$str.strval($pagec);
$str=$str."页";
echo"<tr><td>$str";
echo"</td>";
echo"<td align=center>";
$str="当前页是第";
$str=$str.strval($pagenum);
$str=$str."页";
echo $str;
echo"</td>";
echo"<td>";
echo"转到第";
for($i=1;$i<=$pagec;$i++){
$strpage=" ";
$strpage=$strpage.strval($i);
$strpage=$strpage." ";
echo"<a href=articlcont.php?pagenum=$i>$strpage</a>";
}
echo"页";
echo"</td>";
echo"</tr>";
echo"</table>";
mysql_close($conn);
?>
(待续)