$keywords = "example";
$sql = "SELECT * FROM example WHERE column LIKE '%?%'";
$stmt = $pdo->prepare($sql);
$stmt->execute([$keywords]);
I want to return rows Which keywords LIKE the user Input and I tried to do using PDO prepare statements.And this returns an error.Is there any other way to do this task.Appreciate your help thanks.