|
|
|
ขอกราบรบกวนพี่ๆ ท่านผู้รู้ ผู้ตื่น ผู้เบิกบาน มาช่วยค่าน้อยทางนี้หน่อยเร้ววว ข้าน้อยผิดตรงไหน ฮือๆ |
|
|
|
|
|
|
|
Code (PHP)
<?php
session_start() ;
if(!session_is_registered("login_true")){
echo "<meta http-equiv='refresh' content='0; url = index.php'>" ;
exit() ;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<style type="text/css">
<!--
.style14 {
font-size: 12px;
font-family: "MS Sans Serif";
}
.style17 {color: #0066CC}
-->
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>รายการ</title>
<style type="text/css">
<!--
.style12 { font-size: 12px;
font-family: "ms Sans Serif";
color: #0033CC;
}
.style9 {font-size: 12px; font-family: "ms Sans Serif"; }
.style19 {color: #003399}
-->
</style>
</head>
<body>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="4%" bgcolor="#99CCFF"><img src="images/Main_Clock.gif" width="24" height="24" /></td>
<td width="59%" bgcolor="#99CCFF"><span class="style12">รายการอุปกรณ์ที่แจ้งซ่อมไว้กับระบบ</span></td>
<td width="37%" bgcolor="#99CCFF"> </td>
</tr>
</table>
<div align="center"></div>
<br />
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="ecf5ff">
<tr>
<td width="9%" height="23"><div align="center" class="style9">
<input type="checkbox" name="allbox" id="allbox" onclick="CA();" disabled="disabled"/>
</div></td>
<td width="9%"><div align="center"><span class="style9">รหัส</span></div></td>
<td width="14%"><div align="center" class="style9">ชื่ออุปกรณ์</div></td>
<td width="29%"><div align="center" class="style9">อาการเบื้องต้น</div></td>
<td width="11%"><div align="center" class="style9">ห้อง</div></td>
<td width="12%"><div align="center" class="style9">วันที่แจ้ง</div></td>
<td width="16%"><div align="center" class="style9">สถานะ</div></td>
</tr>
</table>
<?
$sql = "select * from repair where user = '$login_true' ";
$result = mysql_db_query($db,$sql);
$NRow = mysql_num_rows($result);
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$user = $row["user"];
$room = $row["room"];
$device = $row["device"];
$act = $row["act"];
$status = $row["status"];
$date = $row["date"];
///////////////////////////////////////////
$date_new=explode("-",$date);
$date_new[0] += 543; //เอา ค.ศ. มา+543 เปง พ.ศ.
$date=$date_new[2]."/".$date_new[1]."/".$date_new[0];
?>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#CCCCFF">
<tr>
<td width="9%" bgcolor="#FFFFFF"><div align="center" class="style9">
<input name="checkbox[]" type="checkbox" id="checkbox2" onclick='CCA(this)' value="<? echo $id ?>" disabled="disabled"/>
</div></td>
<td width="9%" bgcolor="#FFFFFF"><div align="center"><span class="style9"><? echo $id ?></span></div></td>
<td width="14%" bgcolor="#FFFFFF"><div align="center" class="style17"><span class="style9"><? echo $device ?></span></div></td>
<td width="29%" bgcolor="#FFFFFF"><div align="center"><span class="style9"><? echo $act?></span></div></td>
<td width="11%" bgcolor="#FFFFFF"><div align="center"><span class="style9"><? echo $room?></span></div></td>
<td width="12%" bgcolor="#FFFFFF"><div align="center"><span class="style14">
<? echo $date; ?>
</span></div></td>
<td width="16%" bgcolor="#FFFFFF"><div align="center"><span class="style9"><? if($status == "รอดำเนินการ") echo "<font color=red>รอดำเนินการ</font>";else echo "<font color=green>ดำเนินการเรียบร้อยแล้ว</font>";?></span></div></td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="8"><div align="center" class="style9"><img src="../images/bggreen.gif" width="100%" height="2" /></div></td>
</tr>
</table>
<? } ?>
</body>
</html>
ใส่โค้ดแบบนี้จะดูง่ายกว่าค่ะ
ตรงบรรทัดที่มันน่าจะมีปัญหา พี่ว่า ลองเปลี่ยนการเขียนแบบ php ให้ถูกหลักดีกว่านะคะ
ดูแล้วรู้สึกเหมือนเขียนแบบโค้ด php รุ่นเก่ามาก ๆ ค่ะ
$result = mysql_db_query($db,$sql);
ลองเปลี่ยนเป็น
Code (PHP)
$result = mysql_query($sql);
#คำสั่งเชคว่า มันสามารถประมวลผลได้หรือไม่
if (!$result){
echo mysql_error(); //แสดงคำสั่งที่ error
exit();
}
$NRow = mysql_num_rows($result);
|
ประวัติการแก้ไข 2014-01-17 02:48:05
|
|
|
|
Date :
2014-01-17 02:43:15 |
By :
Th@iDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|