|
|
|
PHP อยากทราบ วิธีแสดงรายงานข้อมูลเป็นตาราง แล้วให้ผู้ใช้ คลิ๊กเลือก ซ่อน หรือ แสดง แถวได้เองตามต้องการ ครับ |
|
|
|
|
|
|
|
ใช้แบบนี้หรือเปล่าครับ
Code (C#)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<script language="JavaScript">
function fncShow(ctrl)
{
document.getElementById(ctrl).style.display = '';
}
function fncHide(ctrl)
{
document.getElementById(ctrl).style.display = 'none';
}
</script>
<form name="frmMain" action="" method="post" OnSubmit="return onDelete();">
<?
$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>
<?
$i = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$i++;
?>
<tr>
<td colspan="6"><?=$objResult["CustomerID"];?> [<a href="JavaScript:fncShow('tr<?=$i;?>');">Show</a>] [<a href="JavaScript:fncHide('tr<?=$i;?>');">Hide</a>]</td>
</tr>
<tr id="tr<?=$i;?>">
<td><div align="center"><?=$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);
?>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-06-16 17:05:39 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|