Hallo members ,
Wie wird Cookie auf localhost gesetzt ?
Ich habe folgende code versucht aber es hat nicht geklappt .
<?php
// Inhalt festlegen
$inhalt = "Ich bin dein Cookie!";
// Cookie erzeugen
setcookie("cook_first_one",$inhalt, time()+600);
// Prüfen
if (!$cook_first_one) {
echo "Cookie ist nicht vorhanden!";
} else {
echo $cook_first_one;
}
?>
Wie wird Cookie auf localhost gesetzt ?
Ich habe folgende code versucht aber es hat nicht geklappt .
<?php
// Inhalt festlegen
$inhalt = "Ich bin dein Cookie!";
// Cookie erzeugen
setcookie("cook_first_one",$inhalt, time()+600);
// Prüfen
if (!$cook_first_one) {
echo "Cookie ist nicht vorhanden!";
} else {
echo $cook_first_one;
}
?>
Kommentar