Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
setcookie("Name", "Inhalt", Verfallsdatum, "Pfad", "Domain", secure);
<?php setcookie("color", $_POST['setcolor'], time()+180); ?>
<html>
<body>
<?php
if(isset($_COOKIE['color']) {
echo "Cookie nicht gesetzt";
} else {
echo "Cookie sagt: Farbe {$_COOKIE['color']}";
}
?>
<p>
<form method="POST" action="<?= $_SERVER['PHP_SELF'] ?>">
<select name="setcolor" size="1">
<option value="">Farbauswahl
<option value="red">Rot
<option value="green">Grün
<option value="blue">Blau
</select>
</p>
<input type="submit" value="Absenden">
</form>
</body>
</html>
<?php
echo $_COOKIE['farben_cookie];
?>
<?php
setcookie("myname","$_POST['text']",time()+60);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="de">
<head>
<title></title>
<link rel=stylesheet type="text/css" href="css/style.css">
</head>
<body>
<?php
if(isset($_COOKIE['myname']) {
echo "Cookie nicht gesetzt";
} else {
echo "Cookie sagt: Farbe {$_COOKIE['myname']}";
}
?>
<a href="text.php">weiter</a>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="de">
<head>
<title></title>
<link rel=stylesheet type="text/css" href="css/style.css">
</head>
<body>
<form method="POST" action="<?= $_SERVER['PHP_SELF'] ?>">
<input type="hidden" value="Das muss auch in das Cookie!"><input type="text" value="1" class="text"><input type="submit" name="text" class="text">
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="de">
<head>
<title></title>
<link rel=stylesheet type="text/css" href="css/style.css">
</head>
<body>
Hier kommt die Liste hin...
</body>
</html>