|
|
|
ผมจะเขียนโค๊ตอย่างไร เมื่อเราเลือกเดือนกับปีแล้วค่าไม่ตรงกับวันในฐานข้อมูลแล้วให้แสดงว่า "ไม่มีข้อมูล" |
|
|
|
|
|
|
|
Code
<?
$i = 1;
$sql = "SELECT * FROM table_br,table_device,table_group_device WHERE br_d_code = d_code AND d_type = no_group AND br_date_borrow BETWEEN '$year-$month-01' AND '$year-$month-31'";
$query = mysql_db_query($c_dbname,$sql);
$num_rows = mysql_num_rows($query);
if($num_rows > 0) // ถ้ามีคิวรี่แล้วมีแถวที่ต้องการ
{
?>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="100">ลำดับ</th>
<th width="150">ID</th>
<th width="200">ชื่ออุปกรณ์</th>
<th width="150">ประเภท</th>
<th width="130">วันที่ยืม</th>
<th>เลขที่ใบยืม</th>
</tr>
<?
while($db = mysql_fetch_array($query))
{ ?>
<tr>
<td align="center"><?=$i++?></td>
<td align="center"><?=$db[br_user]?></td>
<td><?=$db[d_name]?></td>
<td align="center"><?=$db[name_group]?></td>
<td align="center"><?=$db[br_date_borrow]?></td>
<td align="center"><?=$db[br_pr_code]?></td>
</tr>
<? }?>
</table>
<?
}
else // ไม่มีแถวที่ต้องการ
{
echo 'ไม่มีข้อมูล';
}
?>
|
|
|
|
|
Date :
2012-05-29 03:53:17 |
By :
Pine |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|