$sql = "SELECT * FROM product WHERE product = 'Chocolate Brownie Finger'";
$result = $connect->query($sql);
while ($row = $result->fetch_assoc()){
$field = $row["ingredients"];
echo '<b>'.$field.'</b>';
This is fully functioning code
I have a session variable called $_SESSION["variable"]
How do I change my code so, where is searched for "Chocolate Brownie Finger", it instead searches for $_SESSION["variable"]