lovecom
中级会员
 
UID 80708
精华
0
积分 211
帖子 98
金钱 211 喜悦币
威望 0
人脉 0
阅读权限 30
注册 2006-9-28
状态 离线
|
[推荐阅读] 又被删了
<?
function fenye($info,$page)
{
if ($page <= 1) {
$p=1;
}else{
$p=$page;
}
//每页显示多少字
$pstr_num="500";
$start=$pstr_num*$p;
$str=substr($info,$start,$pstr_num);
return $str;
}
$info="从数据库区的内容";
fenye($info,$_GET['p']);
?>
|
|