|
|
|
อยากจะเช็คข้อมูลว่าถ้าลำดับที่ 2 ถึง n... ซ้ำกับลำดับที่ 1 จะไม่ให้แสดงทำได้เปล่าครับ มีรูปตัวอย่างให้ชม |
|
|
|
|
|
|
|
ใช้แบบนี้ครับ
Code (PHP)
<?
if($tmpCusID != $objResult["CustomerID"])
{
echo $objResult["CustomerID"];
}
$tmpCusID= $objResult["CustomerID"]
?>
Code เต็ม ๆ
Code (PHP)
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
$tmpCusID = "";
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center">
<?
if($tmpCusID != $objResult["CustomerID"])
{
echo $objResult["CustomerID"];
}
$tmpCusID= $objResult["CustomerID"]
?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
|
|
|
|
|
Date :
2013-03-29 13:57:48 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค๊าฟ
|
|
|
|
|
Date :
2013-03-29 14:29:46 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|