日期:2014-05-17 浏览次数:20671 次
<?php
include "../include/song.inc.php";
$key = $_GET['u'];
if($_GET["page"]){
$page=$_GET["page"];#获取要显示的页码
}else{
$page=1;#没有参数传入时,显示第一页
}
$col=20;#每页显示记录条数
$p=($page-1)*$col;
$runSql = mysql_query("select * from cmsdj_song where uid = '$key' order by id desc limit ".$p.",".$col."");
while($row = mysql_fetch_array($runSql))
{
//下面这些是调用值
$sid=$row['id'];
$suid=$row['uid'];
$supip=$row['upip'];
$name=$row['name'];
$sname=substr($name,0,30);
$sfile=$row['file'];
$surl=$row['url'];
$swjdx=$row['wjdx'];
$stime=date('Y-m-d H:i:s',$row['addtime']);
//$b64file=base64_encode($surl);
?>
<table width='100%' border='0' cellpadding='0' cellspacing='0' class='tb_style'>
<tr>
<center>
<td width='5%' height='20' class='td_border'> <? echo $sid;?></td>
<td width='25%' class='td_border'><a href='u.php?i=<? echo $sfile;?>'> <? echo $sname;?></a></td>
<td width='20%' class='td_border'><a href='u.php?i=<? echo $sfile;?>'><? echo $sfile;?></a></td>
<td width='20%' class='td_border'><a href='u.php?i=<? echo $sfile;?>'><? echo $surl;?></a></td>
<td width='5%' class='td_border' align='center'><? echo $swjdx;?></td>
<td width='10%' class='td_border' align='center'><? echo $supip;?></td>
<td width='12%' class='td_border' align='center'><? echo $stime;?></td>
<td width='3%' class='td_border' align='center'><a href='del.php?id=<? echo $sid;?>'><img src='/img/no.gif' border='0'></a></td>
</tr>
</center>
</table>
<?php
}
?>
<?php
$col=20;#每页显示记录条数
$count=mysql_query("select id from cmsdj_song where uid like '%$key%'");#取得记录总条数
$num = mysql_num_rows($count)/$col;#计算页数
$nnx = mysql_num_rows($count);#计算页数
$num=ceil($num);#无条件小数进位确定总页数
mysql_close();
?>
$u = $_GET['u'];
$starttime = strtotime($u.'000000');
$endtime = strtotime($u.'235959');
$runSql = mysql_query("select * from cmsdj_song where addtime > '$starttime' and addtime<'$endtime' order by id desc limit ".$p.",".$col."");