Copy code The code is as follows:
setcookie('test', 'this is a cookie test') ;
echo ($_COOKIE['test']);
?>
The above code will not display the results you want
http://www.bkjia.com/PHPjc/319601.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319601.htmlTechArticleCopy the code as follows: ?php setcookie('test', 'this is a cookie test'); echo ( $_COOKIE['test']); ? The above code will not display the results you want...