我尝试发出请求以查找包含特定String值的行。
这是我的代码的一部分:
// Getting motscles value $motscles = $_POST['motscles']; // Prepare a second SQL request to get all annonces posted by the user $result2=$connexion->prepare("select * from annonces where titre LIKE = '%".$motscles."%' ");
我没有结果,我认为我的要求不好..
LIKE =
那是不正确的,应该是-
LIKE '%".$motscles."%'
在此处检查类似通配符的用法
http://dev.mysql.com/doc/refman/5.0/zh-CN/string-comparison- functions.html#operator_like