Folgende Fehlermeldung erscheint nach der Abstimmung:
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/48410/www.ue-lux.de/index.php:30) in /is/htdocs/48410/www.ue-lux.de/poll/poll_cookie.php on line 21
Leider weiss ich nicht woran dies liegt
folgenden php code habe ich in der index.php
<?php
/**
* ----------------------------------------------
* this code is optional
* Important! You have to include it
* before your html code
* ----------------------------------------------
*/
$cookie_expire = 12; // hours
$action = (isset($HTTP_GET_VARS['action'])) ? $HTTP_GET_VARS['action'] : '';
$action = (isset($HTTP_POST_VARS['action'])) ? $HTTP_POST_VARS['action'] : $action;
$poll_ident = (isset($HTTP_GET_VARS['poll_ident'])) ? $HTTP_GET_VARS['poll_ident'] : '';
$poll_ident = (isset($HTTP_POST_VARS['poll_ident'])) ? $HTTP_POST_VARS['poll_ident'] : $poll_ident;
if ($action=="vote" && (isset($HTTP_POST_VARS['option_id']) || isset($HTTP_GET_VARS['option_id']))) {
$cookie_name = "AdvancedPoll".$poll_ident;
if (!isset($HTTP_COOKIE_VARS[$cookie_name])) {
$endtime = time()+3600*$cookie_expire;
setcookie($cookie_name, "luxpoll2", $endtime);
}
}
?>
ich habe die ROW 21 mal dick markiert!
Ich hoffe dsa mir hier jemand sagen kann warum diese Fehlermeldung erscheint , und natürlich, wie ich diese beheben kann...
bin am Ende mit meinem Latein