Answers for "how to read a cookie from other directory in php"

PHP
2

cookie are not set in php

setcookie('username',$username,time()+60*60*24*365);
// 'Force' the cookie to exists
$_COOKIE['username'] = $username;
Posted by: Guest on May-15-2020

Code answers related to "how to read a cookie from other directory in php"

Browse Popular Code Answers by Language