Possible Duplicate:
Headers already sent by PHP
I dont see any whitespace, I'm not echoing.... What is causing the problem?
Warning: Cannot modify header information - headers already sent by (output started at /home/k9ciz4dv/public_html/functions/account/set_location_cookie.php:1) in /home/k9ciz4dv/public_html/functions/account/set_location_cookie.php on line 10
<?php
$xookiezip = $_REQUEST['xookiezip'];
$cookie_expire = time() + (86400 * 20);
if($xookiezip == 'findme'){
$cookie_expire = time() - (86400 * 30);
setcookie('cookiezip', "" , $cookie_expire, '/', $domain_cookie, FALSE, TRUE);
}
else {
setcookie('cookiezip', "$xookiezip" , $cookie_expire, '/', $domain_cookie, FALSE, TRUE);
}
?>