aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/15-cookies/setzen.php

16 lines
302 B
PHP
Raw Normal View History

2022-02-23 22:44:33 +01:00
<?php
setcookie("Programmiersprache", "PHP",
time() + 60*60*12, "/");
setcookie("Sprachversion", "7",
mktime(0, 0, 0, 12, 24, 2016), "/");
setcookie("Session", "abc123", null, "/");
?>
<html>
<head>
<title>Cookies</title>
</head>
<body>
<p>Cookies wurden gesetzt!</p>
</body>
</html>