การ select จากหลาย table แล้วพอกด search ก็ฟ้องว่า
โค้ดที่ใช้เขียนน่ะครับ
Code (PHP)
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ITSERVICES</title>
<style type="text/css">
<!--
body,td,th {
font-family: MS Sans Serif;
}
body {
background-color: #FFFFFF;
background-image: url();
}
-->
</style></head>
<body>
<table width="100%" border="1" cellpadding="1" cellspacing="1">
<tr>
<td><img src="img/IT_service.jpg" width="1000" height="100" /></td>
</tr>
<tr>
<td><a href="Index.php">หน้าแรก</a> | <a href="warsearch.php">ตรวจประกัน</a> | <a href="RequestZone.php">แจ้งซ่อม</a> | <a href="search.php">ค้นหาปัญหา</a> | <a href="Login.php">เข้าสู่ระบบ</a> | </td>
</tr>
</table>
<p> </p>
<p align="center"><strong><u>การค้นหาปัญหา</u></strong></p>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th>ค้นหาปัญหา <input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<p>
<?
if($_GET["txtKeyword"] != "")
{
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("itservice");
mysql_query("SET NAMES UTF8");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$strsql = "SELECT repairdescription.Red_senddate, item.Item_ID, item.Rewa_des, category.Ca_name, employee.Emp_name
FROM repairdescription, item, category, employee
WHERE repairdescription.Item_ID = item.Item_ID
AND repairdescription.Emp_ID = employee.Emp_ID
AND item.Ca_ID = category.Ca_ID
AND (item.Item_ID LIKE '%".$_GET["txtKeyword"]."%')";
$objQuery = mysql_query($strsql) or die ("Error Query [".$strsql."]"); ?>
</p>
<p> </p>
<table width="692" border="1">
<tr>
<th width="93"> <div align="center">รหัสอุปกรณ์</div></th>
<th width="91"> <div align="center">ประเภท</div></th>
<th width="172"> <div align="center">ผู้ฝากข้อความ</div></th>
<th width="93"> <div align="center">อาการเสีย</div></th>
<th width="137"> <div align="center">ขอบริการ วัน-เวลา</div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td height="49"><div align="center">
<?=$objResult["Item_ID"];?>
</div></td>
<td><div align="center">
<?=$objResult["Ca_name"];?>
</div>
<div align="center"></div></td>
<td><div align="center">
<?=$objResult["Emp_name"];?>
</div> </td>
<td><div align="center">
<?=$objResult["Rewa_des"];?>
</div></td>
<td align="right"><div align="center">
<?=$objResult["Red_senddate"];?>
</div> </td>
</tr>
<?
}
?>
</table>
<p>
<?
mysql_close($objConnect);
}
?>
</p>
<p> </p>
</body>
</html>
แล้วพอกด search ก็ฟ้องว่า
Code
Error Query [SELECT repairdescription.Red_senddate, item.Item_ID, item.Rewa_des, category.Ca_name, employee.Emp_name FROM repairdescription, item, category, employee WHERE repairdescription.Item_ID = item.Item_ID AND repairdescription.Emp_ID = employee.Emp_ID AND item.Ca_ID = category.Ca_ID AND (item.Item_ID LIKE '%1001%')]
Tag : - - - -
Date :
2010-01-13 12:02:26
By :
Jun
View :
1152
Reply :
2
Code (PHP)
$objQuery=mysql_query($strsql) or die(mysql_error());
// ดูว่า error ว่ารัยนะครับ
Date :
2010-01-13 13:31:40
By :
Sek-Artdrinker
Load balance : Server 05