Cookies problem!

A

Astror Enales

Hi @ all.

Ich habe eine Frage:
und zwar will ich für eine Forensoftware von mir ein cookie setzen
PHP:
setcookie("loginid", $value, time()+3600);
(ist für den login)

aber wenn ich es ausführe kommt nur das hier raus:

Warning: Cannot modify header information - headers already sent by (output started at /www/htdocs/w0068683/cookie_test/login.php:21) in /www/htdocs/w0068683/cookie_test/login.php on line 23

why?

gruß
Astror Enales
 
Weil bereits eine Ausgabe gemacht wurde, bevor das Cookie gesetzt wird. Dies darf nicht sein. Such mal mit der Suchfunktion nach bzw. schau in der PHP Doku nach den Funktionen zur Ausgabesteuerung.
 
Zurück