Fejl!

Tags:    programmering

Jeg får denne fejl:
Warning: Cannot modify header information - headers already sent by (output started at /web/www/frac/users/hcp/index.php:7) in /web/www/frac/users/hcp/pollfunctions.php on line 46

Warning: Cannot modify header information - headers already sent by (output started at /web/www/frac/users/hcp/index.php:7) in /web/www/frac/users/hcp/pollfunctions.php on line 47

Warning: Cannot modify header information - headers already sent by (output started at /web/www/frac/users/hcp/index.php:7) in /web/www/frac/users/hcp/pollfunctions.php on line 48

Linje 46-48:

setcookie($cookieprefix."vote".$pid,$vote,time()+999999999);

setcookie($cookieprefix."poll".$pid,$pid,time()+999999999);

header("location:$redirectto");

Koden er fra http://www.udvikleren.dk/article.php?aid=115 og jeg kan bare ikke finde fejlen :S
Håber i kan hjælpe!



Den fejl du får handler om at du sender output (html) til browseren og så derefter prøve at ædnre headers (din header funktion og setcookies). Sender du html eller noget til browseren før alt din kode?
M.V.H.
Loke Dupont aka colde



Det virker nu :) Tak for hjælpen!




t