php形式の検索フィルター機能を作成しました。テーブル内のmysqlからデータを取得しました。すべてのクエリと他のものはうまく書かれているしかし、検索機能は動作しません。PHP検索フィルター機能が動作しません
<?php
require_once 'init.php';
include 'header.php';
include 'navigation.php';
if(isset($_POST['search'])){
$valSearch = $_POST['searchButton'];
$query = "SELECT * FROM mainTable WHERE CONCAT ('id','commandName','commandDesc','status') LIKE '%".$valSearch."%'";
$featured = filterTable($query);
}else{
$query = "SELECT * FROM mainTable";
$featured = filterTable($query);
}
function filterTable($query){
$connect = mysqli_connect("localhost","root","","linuxcommanddictionary");
$filter_result = mysqli_query($connect,$query);
return $filter_result;
}
?>
<form action = "index.php" method="post">
<div class="container">
<h3>Linux Fedora OS</h3><hr>
<button type="submit" name ="searchButton" class="btn btn-default"><span class="glyphicon glyphicon-search"></span></button>
<input type="text" name = "search" class="form-control" placeholder="Хайх үгээ бичнэ үү">
<div class="col-md-12">
<div class="row">
<table class="table table-bordered">
<thead>
<th>ID</th>
<th>Command Name</th>
<th>Command Description</th>
<th>Status</th>
</thead>
<tbody>
<?php while($result = mysqli_fetch_assoc($featured)): ?>
<tr>
<td><?=$result['id']; ?></td>
<td><?=$result['commandName']; ?></td>
<td><?=$result['commandDesc']; ?></td>
<td><?=$result['status']; ?></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
</div>
</div>
</div>
</form>
<?php
include 'footer.php';
?>
</body>
</html>
ここはデータベース構造です。
create table if not exists mainTable(
id int auto_increment,
commandName varchar(255),
commandDesc varchar(255),
status int(2),
primary key(id)
)
なれば、それは動作しません見にerror_reportingのターンオンを、開発者から良い説明ではありません。どのようなエラーが出ますか? – Akintunde007
また、フィルタテーブル関数のグローバル変数として接続変数を渡す必要があるようです。 – Akintunde007
エラーは表示されません。 – ARLEQUINA