how to get cookie value in php code example
Example 1: get a cookie in php
<?php
echo 'Hello ' . htmlspecialchars($_COOKIE["name"]) . '!';
?>
Example 2: php cookies
<?php
if(isset($_POST['submit'])){
$username = htmlentities($_POST['username']);
setcookie('nameofcookie', $username, time()+3600);
header('Location: page2.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<title>PHP Cookies</title>
</head>
<body>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF'];?>">
<input type="text" name="username" placeholder="Enter Username">
<br>
<input type="submit" name="submit" value="Submit">
</form>
</div>
</body>
</html>
Example 3: retrieving a cookie in php
$cookiename = $_COOKIE['COOKIE ID']
Example 4: cookies php syntax
setcookie("cookie_name", "type_on_cookie", expiry_time(), "/");