Answers for "how to retrieve cookie with php"

PHP
0

get a cookie in php

<?php
echo 'Hello ' . htmlspecialchars($_COOKIE["name"]) . '!';
?>
Posted by: Guest on October-01-2020
3

retrieving a cookie in php

$cookiename = $_COOKIE['COOKIE ID']
Posted by: Guest on June-01-2020

Browse Popular Code Answers by Language