線上競拍系統的PHP實現架構(二)

來源:互聯網
上載者:User
關鍵字 線上競拍系統的PHP實現架構(二)
上回說完了商品的列表顯示方法。下面來談談顯示商品詳細資料的方法,這與我們在論壇中常用的顯示文章的方法大同小異。

********顯示詳細資料的檔案***********
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="";
}


//讀最新10個買家資訊
function ReadBuyer(){
global $BID_TABLE;
global $id,$buyer,$buyprice,$date,$num;

$SQL="select id,buyer,email,price from $BID_TABLE where parentid='$id' order by id desc";
$result=mysql_query($SQL) or die(mysql_error());
$k=mysql_num_rows($result);

$num=($k>10)? 10:$k; //判斷一下,是不是多於10個。

for($i=0;$i<$num;$i++){
$row=mysql_fetch_array($result);
$buyer[]=$row[buyer];
$buyprice[]=$row[price];
$date[]=date("Y-m-j H:i:s",$row[id]);
}
}


//顯示10個買家資訊。
function ShowBuyer(){
global $buyer,$buyprice,$date,$num;

for($i=0;$i<$num;$i++){
echo "<tr><td width=25%>".$date[$i]."</td>";
echo "<td width=40%>".$buyer[$i]."</td>";
echo "<td width=35%>".$buyprice[$i]."</td></tr>";
}
}

ReadDetail();
ReadBuyer();

?>

  完成了上面的處理,就可以html中用<? echo $name?>或<? echo $price;?>等來取到要顯示的資訊了,這些我就不詳述了。
  就是這句,要根據是否有圖片分別顯示文字或圖片。
<? if($image=="") echo "沒有照片"; else echo "<img src=photo/$image>"; ?>



  在顯示商品詳細資料時,也應讓使用者可以投標,所以此時要對使用者下的新價做出一個判斷,我比較懶,就直接用deamweaver來做這個表單的校正了,只把其中的英文說明改成中文,不過由於在判斷新出價的方面有點特殊,所以對dw產生的函數做了一點點改動。

<script language="javaScript">
<!--
function MM_findObj(n, d) { //v3.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function MM_validateForm() { //v3.0
var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
if (val) { nm=val.name; if ((val=val.value)!="") {
if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
if (p<1 || p==(val.length-1)) errors+='- '+nm+' 必須是正確的email地址.n';
} else if (test!='R') { num = parseFloat(val);
if (val!=''+num) errors+='- '+nm+' 必須是數值.n';
if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
min=test.substring(8,p); max=test.substring(p+1);
//**********改動部分*********
var k=(num-min)/max;
//判斷要大於當前價,並且是當前價+加價單位的整數倍
if (num<min || k != Math.ceil(k) ) errors+='- '+nm+' 必須是大於 '+min+' 並且加價必須為 '+max+'的整數倍.n';
} } } //*******結束改動部分********
else if (test.charAt(0) == 'R') errors += '- '+nm+' 要填完整.n'; }
} if (errors) alert('發現錯誤如下:n'+errors);
document.MM_returnValue = (errors == '');
}
//-->
</script>

下面的事就簡單了,還要有什麼呢?顯示一下已結束競標的商品吧。這個功能的實現與顯示未結束的商品方法一樣,我就不羅嗦了。唯一的區別在於一是SetCondition()條件的不同和在顯示結束競價的商品詳細資料時,沒有使用者出價的表單。


另外,我再給出添加新商品的方法吧。

<?php
include "config.inc.php";
include "tview.class.php";

function AddRecord(){
global $view;
//以下變數都是從上一個頁面的表單中得到的。
global $name,$price,$unit,$year,$month,$day,$photofile,$intro;

$t=time();
$c=nl2br($intro);
$et=mktime(24,0,0,$month,$day,$year);

//判斷一下是否有圖上傳了。
$ph=( $photofile!="none" and !empty($photofile) )? '1':'0';

//調用成員函數add()參數就是sql語句中的values()中的字串
$view->Add("'$t','$name','$c','$price','$unit','$et','0','$price','$ph'");

//如果有圖片,拷到指定目錄下。
if($ph=='1')
copy($photofile,"photo/$t.jpg");

}

if( $Submit){
$view= new TViewPage($WARE_TABLE,20);
AddRecord();
header("Location:manager.htm");
}

?>

  好了,羅羅嗦嗦寫了兩篇,不知道可不可以又加個幾百分哦。:)

  有什麼問題真心地請大家提出來討論,我可是把程式拿出來了,您見到什麼不妥的不當的,可千萬不要吝嗇,記得告訴我一聲。

  我的email : ycshowtop@21cn.com

  另外,如果你想要這個程式比較完整的代碼,也來個email,我寄給您。
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.