Answers for "how to store cookie in php"

PHP
6

setcookie php

setcookie($cookiename, $cookievalue, time() + (86400 * 30), "/"); // 86400 = 1 day
Posted by: Guest on August-18-2020
0

hoew to store a cookie php

<?php
$expireDate = time()+2*24*60*60;
setcookie("Auction_Item", "Luxury Car", $expireDate);
?>
Posted by: Guest on July-06-2021

Browse Popular Code Answers by Language