|
|
|
แสดงข้อมูล จากการจอยตารางยังไงครับ ไม่รู้ว่าใช้คำสั่งถูกด้วยไหม ช่วยดูให้ทีครับ |
|
|
|
|
|
|
|
พอดีไม่รู้จะเริ่มยังไง เลยลองทำดู ไม่รู้ว่าถูกหรือป่าวด้วยครับ
โค๊ดจอยตาราง
Code (PHP)
if($id_tech!=""){
$sql = "SELECT tbl_tech.*,tbl_name.*,tbl_agen.*,tbl_type.* FROM tbl_tech,tbl_name,tbl_agen,tbl_type WHERE tbl_name.id_name = tbl_tech.id_name,tbl_agen.id_agen = tbl_tech.id_agen,tbl_type.id_type = tbl_tech.id_type order by id_type1 limit $goto,$list_page";
}else $sql = "SELECT tbl_tech.*,tbl_name.*,tbl_agen.*,tbl_type.* FROM tbl_tech,tbl_name,tbl_agen,tbl_type WHERE tbl_name.id_name = tbl_tech.id_name,tbl_agen.id_agen = tbl_tech.id_agen,tbl_type.id_type = tbl_tech.id_type limit $goto,$list_page";
//$sql = "select * from tbl_tech order by catalog desc limit $goto,$list_page";
$dbquery = mysql_db_query($dbname, $sql);
//$n=$NRow+1;
while ($result = mysql_fetch_array($dbquery)) //บรรทัดนี้มัน error น่ะครับ
{
//$id_tech = $result[id_tech];
$tech_detail = $result[tech_detail];
$names = $result[names];
$agen = $result[agen];
$tel = $result[tel];
$tech_charge = $result[tech_charge ];
$types = $result[types];
$tech_pdf = $result[tech_pdf];
$show_pdf = "../pdf/res/$tech_pdf";
รบกวนผู้รู้ช่วยตอบหน่อยครับ
Tag : PHP, CakePHP
|
|
|
|
|
|
Date :
2011-01-17 16:12:32 |
By :
fujisawa10 |
View :
1251 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยดูให้หน่อยน่ะครับ
มันฟ้อง
mysql_fetch_array(): supplied argument is not a valid MySQL result resource in D:\AppServ\www\onestop\adminweb\show_tech.php on line 124
|
|
|
|
|
Date :
2011-01-17 16:18:36 |
By :
fujisawa10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ล้ะครับ เปลี่ยนจาก , เป็น AND
Code (PHP)
WHERE tbl_name.id_name = tbl_tech.id_name,tbl_agen.id_agen = tbl_tech.id_agen,tbl_type.id_type = tbl_tech.id_type
Code (PHP)
WHERE tbl_name.id_name = tbl_tech.id_name AND tbl_agen.id_agen = tbl_tech.id_agen AND tbl_type.id_type = tbl_tech.id_type
|
|
|
|
|
Date :
2011-01-17 16:33:40 |
By :
fujisawa10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|