标签: mysql
我在PHP和MySql中实现了jquery auto complete,其中我有这样的字符串:
nokia lumia 1020
如果用户输入
诺基亚1020
然后查询应该逐字匹配上面的字符串。这是我的询问。
$stmt = $conn->prepare('SELECT * FROM mobile WHERE model LIKE :term'); $stmt->execute(array('term' => '%'.$_GET['term'].'%'));
有什么建议吗?