Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
setcookie ("foo", "bar", time() + 3153600000);
header ("Location: /test_code/test_cookie2.php");
?>
<?php
print '<pre>';
print_r ($_COOKIE);
?>
Array
(
[foo] => bar
)