16 lines
398 B
PHP
16 lines
398 B
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Cookies</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<h1>Setzen eines Cookies</h1>
|
|
|
|
<?php
|
|
setcookie("testcookie","Die Sonne scheint", 0, "/", "192.168.2.120", false, true);
|
|
?>
|
|
|
|
</body>
|
|
</html>
|