aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/15-cookies/setzen-pufferung.php
Müller Harald 507e5da390 muh
2022-05-13 11:53:50 +02:00

22 lines
352 B
PHP

<?php
ob_start();
?>
<html>
<head>
<title>Cookies</title>
</head>
<body>
<?php
setcookie("Programmiersprache", "PHP",
time() + 60*60*12, "/");
setcookie("Sprachversion", "7",
mktime(0, 0, 0, 12, 24, 2016), "/");
setcookie("Session", "abc123", null, "/");
?>
<p>Cookies wurden gesetzt!</p>
</body>
</html>
<?php
ob_end_flush();
?>