<?php
/* 取记录条数 */
$sql="select * from info";
$result=mysql_query($sql);
echo mysql_num_rows($result)."<br/>";
$sql="select count(*) as sum from info";
$result=mysql_query($sql);
$row=mysql_fetch_array($result);
echo $row["sum"]."<br/>";
/* 当前时间 */
date_default_timezone_set("asia/shanghai"); /* 设置时区 */
echo date("y-m-d h:i:s");
?>
<?php
/* 缩略图 */
function imgsize($imgname,$mw="200",$mh="180")
{
$pic=getimagesize($imgname);//获取原图的尺寸
$sw=$pic[0]; //取出图像的宽度
$sh=$pic[1]; //取出图片的高度
if($sw>$sh){
$mw>=$mw;
$mh=(int)($sh*($mw/$sw)); //int取整 用原图的高度*(自己设定的宽度(180)/原图的宽度)
}
else{
$mh=$mh;
$mw=(int)($sw*($mh/$sh)); //用原图的宽度*(自己设定的高度(120)/原图的高度)
}
$picstr='<img src="'.$imgname.'" width="'.$mw.'" height="'.$mh.'">'
return $picstr;
}
?>
<?php
/* 图片换行 */
$cn=mysql_connect("localhost","root","");
$db=mysql_select_db("test");
$sql="Select * from images";
mysql_query("set names gb2312");
$result=mysql_query($sql);
$i=0;
echo "<table width=70% align="center" border="0"><tR>";
while($row=mysql_fetch_array($result)){
$i=$i+1;
echo("<td align="center" valign="top" width="300"><div style="border:1px solid #FF0000;height:220px;">".$row["picname"]."<br>".imgsize($row["picurl"])."</tD>");
if($i%3==0){
echo "</tr>";
}
}
echo "</tr></table>";
?>