You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postfixadmin/tests/simpletest/test/site/set_cookies.php

19 lines
644 B
PHP

<?php
setcookie("session_cookie", "A");
setcookie("short_cookie", "B", time() + 100, "/");
setcookie("day_cookie", "C", time() + 24 * 3600, "/");
setcookie("path_cookie", "D", time() + 100, "/test/path/");
setcookie("hour_cookie", "E", time() + 3600, "/");
?><html>
<head><title>SimpleTest testing links</title></head>
<body>
<p>
A target for the
<a href="http://www.lastcraft.com/simple_test.php">SimpleTest</a>
test suite.
All it does is set some cookies which you can see
<a href="network_confirm.php">here</a>.
</p>
</body>
</html>