Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<?php
$cookie_name = "user";
$cookie_value = "John";
setrawcookie($cookie_name, $cookie_value, time() + (86400 * 30), "/");
// 86400 = 1 day
?>
<html>
<body>
<?php
echo "Cookie is set.";
?>
</body>
<!-- Mirrored from www.w3schools.com/php/phptryit.asp?filename=tryphp_func_http_setrawcookie by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:22:57 GMT -->
</html>
Cookie is set.