+--------------------------------------------------------------------
| {Local}
| System: Win XP Prof
| Server: Apache/1.3.27 / Mysql 4.0.13
| PHP: PHP 5.0.3 [Apache module]
| {Internet}
| System: Linux dd3022 2.4.20-4GB-athlon #1
| Server: Apache/1.3.31 / Mysql 4.0.23
| PHP: PHP 4.3.10 [Apache module]
+--------------------------------------------------------------------
Local funzt es nicht auf dem server schon?
hat sich im bereich Cookie soviel verändert von php4.3.10 -» PHP5.0.3
Gibt es eine einstellung in der PHP.ini die man vor nehmen muss?
Es kommen Local nur 2 Meldungen:
Internet Server keine Fehler Meldungen.
| {Local}
| System: Win XP Prof
| Server: Apache/1.3.27 / Mysql 4.0.13
| PHP: PHP 5.0.3 [Apache module]
| {Internet}
| System: Linux dd3022 2.4.20-4GB-athlon #1
| Server: Apache/1.3.31 / Mysql 4.0.23
| PHP: PHP 4.3.10 [Apache module]
+--------------------------------------------------------------------
Local funzt es nicht auf dem server schon?
hat sich im bereich Cookie soviel verändert von php4.3.10 -» PHP5.0.3
Gibt es eine einstellung in der PHP.ini die man vor nehmen muss?
Es kommen Local nur 2 Meldungen:
Code:
Notice: Undefined index: action in c:\apache\htdocs\shq\cookie\test.php on line 3 Notice: Undefined index: TestCookie in c:\apache\htdocs\shq\cookie\test.php on line 7
PHP-Code:
<?php
$value = "Das ist ein Test!";
if($_GET['action'] == "del") {
/* Löschen des cookies */
setcookie("TestCookie", $value, time()-3600);
echo "Das Cookie wurde soebend gelöscht!<br>";
echo "<a href=\"?action=set\">Cookie setzen</a>";
} else if($_COOKIE['TestCookie'] != "") {
/* Prüfung ob cookie bereits vorhanden */
echo "Das Cookie wurde bereits gesetzt!<br>";
echo "Cookie: ".$_COOKIE['TestCookie']."<br>";
echo "<a href=\"?action=del\">Cookie löschen</a>";
} else {
/* cookie wird gesetzt */
setcookie("TestCookie", $value, time()+3600); /* verfällt in 1 Stunde */
echo "Das Cookie wurde soebend gesetzt!<br>";
echo "<a href=\"javascript:self.location.href=self.location.href;\">Aktualisieren</a>";
}
?>
Kommentar