ขอตัวอย่างได้ไหมครับ พอดีเป็นมือใหม่คับ
ลองทำแบบพี่ไม่ทราบว่าต้องเอาไปใส่ตรงไหน
แปลงยังแปลงไม่เป็นเลยคับ รบกวนแนะนำหน่อยนะคับ
$result = " + " ;
echo .($result) ;
$strSQL = "SELECT * FROM table2 WHERE (ID LIKE '%".$_GET["$result"]."%' or ID LIKE '%".$_GET["$result"]."%' )";
ประวัติการแก้ไข 2017-07-11 13:27:34
Date :
2017-07-11 12:45:49
By :
woraman
No. 5
Guest
แก้ไขเป็นแบบนี้ครับ
$strSQL = "SELECT * FROM table2 WHERE ID in '".$_GET['txtKeyword']."'";
$exp = explode(",",$_GET["txtKeyword"]);
$strSQL="select * from table2 where ID = '".$exp[0]."'";
if(count($exp)>1){
for($i=1;$i<count($exp);$i++){
$strSQL .= " or ID = '".$exp[$i]."'";
}
}
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");