function callItemName($itemid){
$result = mysql_query("SELECT * FROM mcitemid WHERE itemid LIKE '$itemid'") or die('ERROR: ' . mysql_error());
$fresult = mysql_fetch_array($result);
$itemcallname = $fresult['itemid'];
return('$itemcallname');
}
ตาราง mcitemid ตัวอย่าง itemiditemname
1 Stone
2 Grass
.
.
.
322 Golden Apple
ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE itemid LIKE '322'' at line 1
$result = mysql_query("SELECT * FROM mcitemid WHERE itemid LIKE '$itemid'") // Syntax ไม่ถูกครับ
แก้เป็น Code (PHP)
$result = mysql_query("SELECT * FROM mcitemid WHERE itemid LIKE '%$itemid%'")
// แต่คุณส่ง id ไปให้ Query ไม่ควรใช้ like น่ะครับ
// แบบนี้น่าจะเหมาะกว่า
$result = mysql_query("SELECT * FROM mcitemid WHERE itemid = '$itemid'")