|
|
|
ขอรบกวนผู้รู้หน่อยครับ ช่วยอธิบายให้เข้าใจทีครับ จากผู้โง่เขลา |
|
|
|
|
|
|
|
พอดีผมศึกษาโค้ดอยู่อะครับ แต่ไม่เข้าใจอะครับ
รบกวนเสียสละเวลาอันมึค่าของท่านผู้ใจบุญช่วยอธิบายทีครับว่ามีการทำงานยังไง
อะไรไปทางไหนบ้างครับ
เป็นการตั้งการแข่งขันของเมตฟุตบอลอะครับ แต่ผมไม่รู้ว่ามันทำงานยังไงอะครับ
รบกวยท่านผู้ใจบุญทั้งหลายด้วยนะครับ
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<?php // ส่วน process
if($confirm=='yes')
{ echo "ใส่ผลการแข่ง<br>\n";
echo "$matchid / $teamwon <br>\n";
/*
select จากฐานข้อมูล matchid = id if teamwon = 1 : sql1 = update dm_bettable set result win ratio
else sql1 = update dm_bettable set result win ratio
connect ฐานข้อมูล
ใช้ process sql
*/
include("connect.php");
$sql2="select id,ratio1,ratio2,player1,player2 from dm_bettable where id='$matchid';";
$result = mysql_query($sql2);
while ($row2=mysql_fetch_array($result)) {
$id=$row2["id"];
$ratio1=$row2["ratio1"];
$ratio2=$row2["ratio2"];
$player1=$row2["player1"];
$player2=$row2["player2"];
echo "$id $ratio1 $ratio2 $player1 $player2<br>\n";
}
if ($teamwon=='1') { $updatesql="UPDATE dm_bettable SET result='$player1',winratio='$ratio1',timeclose=now(),timeresult=now() WHERE id='$matchid';"; }
else $updatesql="UPDATE dm_bettable SET result='$player2',winratio='$ratio2',timeclose=now(),timeresult=now() WHERE id='$matchid';";
$result = mysql_query($updatesql) ;
mysql_close($connect) ; // ปิดการเชื่อมต่อกับฐานข้อมูล
$confirm='no';
}
?>
</head>
<body>
<table width="50%" border="1" cellspacing="0" cellpadding="2">
<tr bgcolor="#66CCFF">
<td width="19%"><div align="center"><strong>Matchid</strong></div></td>
<td width="40%"><div align="center"><strong>Player1</strong></div></td>
<td width="41%"><div align="center"><strong>Player2</strong></div></td>
</tr>
<?php
/*
insertresult.php ทำหน้าที่ใส่ผลการแข่งขัน
1. แสดง match ทั้งหมดที่ ยังไม่รู้ผลการแข่งขันขึ้นมา เพื่อจะใส่ผล
2. แสดง drop drow menu สำหรับใส่ผล
3. มี hidden confirm=yes ถ้าใช่ ก็ให้อัพเดทผลการแข่งขันในหน้านั้น แล้วอย่าลืมสั่ง confirm=no คืนด้วย
4. กลับมาหน้าเดิม ( process หน้าเดิม )
*/
include("connect.php");
$sqlcommand="select id,player1,player2 from dm_bettable where result='no';";
$result = mysql_query($sqlcommand);
while ($row=mysql_fetch_array($result)) {
$id=$row["id"];
$player1=$row["player1"];
$player2=$row["player2"];
echo "<tr>\n";
echo" <td>$id </td><td>$player1</td><td>$player2</td>\n";
echo "</tr>\n";
}
mysql_close($connect) ; // ปิดการเชื่อมต่อกับฐานข้อมูล
?>
</table>
<form name=form action="<?=$php_self; ?>" method="post">
match ที่ต้องการใส่ผล :
<select name="matchid">
<?
include("connect.php");
$sqlcommand="select id from dm_bettable where result='no';";
$result0 = mysql_query($sqlcommand);
while ($row=mysql_fetch_array($result0)) {
$id=$row["id"];
echo"<option value=\"$id\">$id</option>";
}
mysql_close($connect) ; // ปิดการเชื่อมต่อกับฐานข้อมูล
?></select>
ทีมที่ชนะ <select name="teamwon">
<option value="1">team1</option>
<option value="2">team2</option>
</select>
<input type="hidden" name="confirm" value="yes" />
<input type="submit"name="buttonok" value="ใส่ผลการแข่ง" />
</form>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<script type="text/javascript" language="JavaScript">
function testselect() {
document.form1.hero1name.value=document.form1.selecth1.options[document.form1.selecth1.selectedIndex].text;
document.form1.hero2name.value=document.form1.selecth2.options[document.form1.selecth2.selectedIndex].text;
}
</script>
</head>
<body>
<?
// matchcreate.php
?>
<form name="form1" method="post" action="insertmatch.php">
<table width="70%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="102">รายละเอียด</td>
<td colspan="2"><input name="matchdetail" type="text" size="50" /></td>
</tr>
<tr>
<td>ผู้เล่น</td>
<td width="248"><input type="text" name="player1" /></td>
<td width="258"><input type="text" name="player2" /></td>
</tr>
<tr>
<td>playtype</td>
<td><select name="playtype">
<option value="normal" selected>normal</option>
<option value="random">random</option>
<option value="random2">random แค่ player2</option>
</select></td>
<td> </td>
</tr>
<tr>
<td>Hero</td>
<td><select name="selecth1" onChange="testselect()">
<?
include("connect.php");
$sqlcommand="select * from dm_herodb order by hprimary,hname,hnick;"; // เลือก hero ตัวที่ 1
$result = mysql_query($sqlcommand) ;
while ($row=mysql_fetch_array($result)) {
$hid=$row["hid"];
$hname=$row["hname"];
$hnick=$row["hnick"];
$hprimary=$row["hprimary"];
echo" <option value=\"$hid\"> $hname : $hprimary </option><br>\n"; // แสดงชื่อ hero 1 ทั้งหมด
}
?>
</select> </td>
<td><select name="selecth2" onChange="testselect()">
<?
$sqlcommand="select * from dm_herodb order by hprimary,hname,hnick;"; // เลือก hero ตัวที่ 2
$result = mysql_query($sqlcommand) ;
while ($row=mysql_fetch_array($result)) {
$hid=$row["hid"];
$hname=$row["hname"];
$hnick=$row["hnick"];
$hprimary=$row["hprimary"];
echo" <option value=\"$hid\"> $hname : $hprimary </option><br>\n"; // แสดงชื่อ hero 2 ทั้งหมด
}
mysql_close($connect) ; // ปิดการเชื่อมต่อกับฐานข้อมูล
?>
</select> </td>
</tr>
<tr>
<td> </td>
<td><input name="hero1name" type="text" size="35" /></td>
<td><input name="hero2name" type="text" size="35" /></td>
</tr>
<tr>
<td>อัตราต่อรอง</td>
<td><input type="text" name="ratio1" /></td>
<td><input type="text" name="ratio2" /></td>
</tr>
<tr>
<td>โอกาสชนะ</td>
<td><input type="text" name="winchance1" /></td>
<td> </td>
</tr>
<tr>
<td>เวลาเปิดรับแทง</td>
<td colspan="2"><select name="timeopen">
<option value="0">ตอนนี้</option>
<option value="10800">3 ชั่วโมง 10800</option>
<option value="21600">6 ชั่วโมง 21600</option>
<option value="32400">9 ชั่วโมง 32400</option>
<option value="43200">12 ชั่วโมง 43200</option>
<option value="54000">15 ชั่วโมง 54000</option>
<option value="86400">24 ชั่วโมงหลังจากนี้ </option>
</select> </td>
</tr>
<tr>
<td>เวลาเริ่มแข่ง (ปิดรับแทง)</td>
<td colspan="2"><select name="timeclose">
<option value="10800">3 ชั่วโมง 10800</option>
<option value="21600">6 ชั่วโมง 21600</option>
<option value="32400">9 ชั่วโมง 32400</option>
<option value="43200">12 ชั่วโมง 43200</option>
<option value="54000">15 ชั่วโมง 54000</option>
<option value="64800">18 ชั่วโมง 64800</option>
<option value="86400">24 ชั่วโมง 86400 </option>
<option value="172800">48 ชั่วโมง 172800</option>
<option value="604800">1 สัปดาห์</option>
</select> </td>
</tr>
<tr>
<td>เวลาแข่งเสร็จ</td>
<td colspan="2"> หลังเริ่มแข่ง 1 ชั่วโมง </td>
</tr>
<tr>
<td> </td>
<td><select name="matchconfirm">
<option value="yes">พร้อมแล้ว </option>
<option value="no">ยังไม่พร้อม</option> </td>
<td> </td>
</tr>
<tr>
<td><input type="submit" name="Submit" value="Submit" /></td>
<td><select name="matchtype">
<option value="2">ผู้เล่นแข่งกันจริง ๆ </option>
<option value="1">Computer Random ผล</option></td>
<td><input type="reset" name="Submit2" value="Reset" /></td>
</tr>
</table>
<br />
</form>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
15 เม.ย. 2551 01:00:21 |
By :
boonkrong |
View :
1134 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอามาจากไหนหว่า ถ้าจะถามคนที่ ออกแบบบน่ะ
|
|
|
|
|
Date :
15 เม.ย. 2551 07:39:59 |
By :
arsachi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|