我有一个输入类型文本,并在我的页面上作为搜索栏提交。我希望我的php脚本打印包含插入字符串作为其自身一部分的表中的所有名称。目前,如果在文本输入中写入整个名称,则此脚本仅打印信息。但是我也希望它能显示是否只有部分内容写在其中。
private function search(){
if (isset($_POST['submit'])) {
# Database connection
$db = $this->db;
$db->set_charset('utf8');
# check connection
if (!$db) {
echo "connection fail";
}
# HTML output (pt. 1)
$output = '
<table>
';
# SQL query
$q = '
SELECT imeStud, prezStud
FROM stud
WHERE imeStud LIKE ?
';
# process SQL query
$search_input = $_POST['search'];
if ($stmt = $db->prepare($q)) {
$stmt->bind_param('s',$search_input);
$stmt->bind_result($ime,$prezime);
$stmt->execute();
while ($stmt->fetch()) {
$output .= '
<tr><td>'.$ime.'</td><td>'.$prezime.'</td></tr>
';
}
}
# HTML output (pt. 3)
$output .= '</table>';
echo $output;
}
}#endfunc(search())
答案 0 :(得分:2)
您拥有最多的东西,只需在搜索字词之前和之后添加通配符
- $search_input = $_POST['search'];
+ $search_input = '%' . $_POST['search'] . '%';
或
- $stmt->bind_param('s',$search_input);
+ $stmt->bind_result('s','%' . $search_input . '%');