Hi ich muss wohl einen Fehler gemacht haben, aber ich komm irgenwie nicht weiter!
Es handelt sich um folgendes mini-script, welches ein Cookie setzen soll:
if (isset($_COOKIE['favpics'])) {
$cvalue=$_COOKIE['favpics'].",".$path."|".$num;
echo $cvalue;
}
else {
$cvalue=$path."|".$num;
echo $cvalue;
}
setcookie('favpics',$cvalue,time()+60*60);
Dies führt jedoch zu folgendem fehler, und ich weis nicht warum, einer ne idee?
[quote]
Warning: Cannot modify header information - headers already sent by (output started at /srv/www/htdocs/web0/html/modules/addfav.php:8) in /srv/www/htdocs/web0/html/modules/addfav.php on line 11
[/quote]