快讯

在线竞拍系统的PHP实现框架(二)

2004-02-14 09:33  出处:奥索网  作者:sharetop  责任编辑:zwg 

  上回说完了商品的列表显示方法。下面来谈谈显示商品详细信息的方法,这与我们在论坛中常用的显示帖子的方法大同小异。 ********显示详细信息的文件*********** detail.php <?php include "config.inc.php"; //显示商品详细信息 //用全局变量来做,可以方便地取到多个字段的值。 //有id,名字,价格,介绍,当前价,单位,图片,结束时间。 function ReadDetail(){ global $WARE_TABLE; global $id,$name,$price,$description,$cprice,$unit,$image,$endtime; $SQL="select id,name,description,price,unit,endtime,reply,curprice,photo from $WARE_TABLE where id='$id'"; $result=mysql_query($SQL) or die(mysql_error()); //下面这一句,也可以用list(...)来做,但我习惯这样分开,看起来是麻烦点,不过清楚些,特别是有要处理的字段时,这样就很有必要了。 $row=mysql_fetch_array($result); $name=$row[name]; $price=$row[price]; $description=$row[description]; $unit=$row[unit]; $cprice=$row[curprice]; $endtime=date("Y-m-j",$row[endtime]); if($row[photo]==1) $image=$row[id].".jpg"; else $image=""; }
键盘也能翻页,试试“← →”键
302 Found

302 Found


Powered by Tengine
tengine
相关文章

相关软件:

腾讯QQ2012
大小:52.93 MB 授权:免费
腾讯QQ2012
立即下载
腾讯QQ2013
大小:49.32 MB 授权:免费
腾讯QQ2013
立即下载