Mysql query:
$StoreName = "Jack & Jill";
$sql = "SELECT * FROM table WHERE storename = :store";
$stmt = $DBConnect->prepare($sql);
$stmt->bindValue(":store", $StoreName);
$stmt->execute();
Here the query is not selecting any value. How to modify the code to select row with column value 'Jack & Jill'?