Hallo Leute! Ich setzte mit folgender Funktion ein Cookie:
Problem ist nur, wenn das Cookie schon gesetzt wurde und die Funktion nochmals aufgerufen wird, wird zwar $validity aktualisiert, aber leider nicht der Inhalt des Cookies ($SHOPPINGLIST)!?
Aber warum? Was mache ich falsch?
PHP:
function save($SHOPPINGLIST)
{
$validity = time()+2419200;
setcookie("SHOPPINGLIST", $SHOPPINGLIST, $validity);
}
Problem ist nur, wenn das Cookie schon gesetzt wurde und die Funktion nochmals aufgerufen wird, wird zwar $validity aktualisiert, aber leider nicht der Inhalt des Cookies ($SHOPPINGLIST)!?
Aber warum? Was mache ich falsch?