Answers for "Checking if cookies variables is set"

0

Checking if cookies variables is set

<?php
  
if(isset($_COOKIE["Auction_Item"])){
    echo "Auction Item is a  " . $_COOKIE["Auction_Item"];
} else{
    echo "No items for auction.";
}
  
?>
Posted by: Guest on August-24-2021

Code answers related to "Checking if cookies variables is set"

Browse Popular Code Answers by Language