สอบถามเรื่อง ค้นหาข้อมูลสองตารางไม่ยอมเเสดงค่าออกมาครับ
ว่าแต่ Connect database แล้วก็ Query ยังครับ
Date :
2015-02-05 23:48:31
By :
Krungsri
ลอง echo $strSQL เพื่อเอา Query ไปรันใน phpmyadmin ก่อนครับเพื่อเช็คว่า query ถูกป่าว
ถ้า Query แล้วมีข้อมูล อ่าจจะผิดตอน Loop
Code (PHP)
while($obResult = mysql_fetch_array($objQuery))
{
$resultArray[] = $obResult;
}
Date :
2015-02-06 00:07:06
By :
Krungsri
Code (PHP)
$strKeyword = $_POST["txtKeyword"];
$strSQL = "SELECT * FROM student_sub,memberscan WHERE student_sub.Idstudent=memberscan.student_sub AND Idstudent LIKE '%".$strKeyword."%' ";
ค่าฟิวด์ตัวที่ where student_sub.Idstudent=memberscan.student_sub
--- Idstudent
---student_sub , Idstudent ดูค่าfield สองตัวนี้ให้ดี น้องจะดึงข้อมูลออกมาทั้งหมดเลยหรือป่าวค่ะ ถ้าอยากให้ดูข้อมูลช่วยทั้งหมดน้อง ส่งฟิวด์ในแต่ละตารางมาด้วยนะดีมากนะค่ะ เพราะจะได้ไล่ถูกว่าผิดที่คิวรี่ หรือผิดที่คำสั่งอื่นจ้า
Date :
2015-02-06 04:14:27
By :
รู้สึกดีจัง
แก้ เป็น
Code (PHP)
<?php
$objConnect = mysql_connect("localhost","web84u1","qr456");
$objDB = mysql_select_db("web84db1");
mysql_query("SET NAMES UTF8");
//("SET NAMES 'utf8' COLLATE 'utf8_general_ci';");
// $_POST["txtKeyword"] = "a"; // for Sample
$strKeyword = $_POST["txtKeyword"];
$strSQL = "SELECT * FROM student_sub,memberscan WHERE student_sub.Idstudent=memberscan.student_sub AND Idstudent LIKE '%".$strKeyword."%' ";
$objQuery = mysql_query($strSQL);
//$intNumField = mysql_num_fields($objQuery);
$resultArray = array();
//while($obResult = mysql_fetch_array($objQuery))
while($obResult = mysql_fetch_assoc($objQuery))
{
/*
$arrCol = array();
for($i=0;$i<$intNumField;$i++)
{
$arrCol[mysql_field_name($objQuery,$i)] = $obResult[$i];
}
array_push($resultArray,$arrCol);
*/
array_push($resultArray,$obResult);
}
mysql_close($objConnect);
echo json_encode($resultArray);
?>
ที่มันไม่แสดงเพราะ บันทัดที่ 5 หรือเปล่า ครับ ส่วนโค๊ดอื่นๆ ผม optimize ให้เป็นตัวอย่างนะครับ
ปล. ไม่ได้มีการทดสอบ ต้องลองเองนะครับ ผิดยังไงก็ขออภัยไว้ด้วย
ประวัติการแก้ไข 2015-02-06 05:29:14
Date :
2015-02-06 05:25:30
By :
Chaidhanan
เดวลองทำดูน่ะครับตอนนี้ ติดเรียนอยู่ครับ
Date :
2015-02-06 10:36:08
By :
se7enday007
Date :
2015-02-06 21:33:13
By :
รู้สึกดีจัง
ขอบคุณ พี่ๆ ทุกคนที่ให้คำแนะนำน่ะครับ และขอขอบคุณพื้นที่ดี ๆ https://www.thaicreate.com ตอนนี้ทำได้แล้วครับผม
Date :
2015-02-07 22:17:22
By :
se7enday007
Load balance : Server 04