Hello,
I can’t add too many search options since the lookup field is a single row and half a field at the bottom of the listing table.
So is it possible to do something like the following?
Example,
I have a table called phones
I searched “xxx_feature” in the search field and phones of multiple brands were listed, is it possible to list xxx-featured and samsung-branded phones when I see the brand name by separating “xxx_feature, samsung” with a comma?
Note: If there are comma-separated words, it means that different columns will be searched. Not a standard column
Sorry for not explaining clearly
$search = $_POST['search']:
$query = "SELECT * FROM tbl WHERE column1 LIKE ? OR column2 LIKE ? OR column3 LIKE ? OR column4 LIKE ?";
$params = array("%$search%", "%$search%, "%$search%, "%$search%");
$stmt = $handle->prepare($query);
$stmt->execute($params);