|
|
|
จะทำยังไง ให้การ Random ไม่ให้เกิดข้อมูลซ้ำกัน ถ้าหากมีการ Query 2 ครั้ง |
|
|
|
|
|
|
|
Code (PHP)
<?php
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("db",$objConnect);
$query = "SELECT user_code,user_name,user_lname FROM user ORDER BY RAND() LIMIT 7";
$result = mysql_query($query) or die(mysql_error());
echo "<center>";
echo "<table width='400' border='0' cellspacing='1' cellpadding='0'>";
while($line = mysql_fetch_assoc($result)){
echo "<tr>";
if(!isset($first)){
$first=true;
echo "<td height='22' width='100' style="font-size: 48px">รางวัลชนะเลิศ</td>";
}else{
echo "<td height='22' width='100' >รางวัลชมเชย</td>";
}
echo "<td height='22' width='10' align='right'>$line[user_code]</td>";
echo "</tr>";
}
echo "</table>";
echo "<br>";
|
|
|
|
|
Date :
2017-08-31 08:22:06 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|