bhebs_quines Posted June 5, 2008 Share Posted June 5, 2008 guys.. please help me.. i have a problem about cookies... when i use setcookie("rec_id", $rec_id, time()+7200); there is an error here: Warning: Cannot modify header information - headers already sent by (output started at /var/www/gsat/index_part2.php:47) in /var/www/gsat/index_part2.php on line 48 how do i fix this problem? Quote Link to comment https://forums.phpfreaks.com/topic/108814-help/ Share on other sites More sharing options...
BillyBoB Posted June 5, 2008 Share Posted June 5, 2008 You really shouldn't send headers out after the Head section of the html but if you must put ob_start(); in php tags at the very top of the page. Also this is a stickied problem. You should look at those before coming for help. Quote Link to comment https://forums.phpfreaks.com/topic/108814-help/#findComment-558147 Share on other sites More sharing options...
wildteen88 Posted June 5, 2008 Share Posted June 5, 2008 guys.. please help me.. i have a problem about cookies... when i use setcookie("rec_id", $rec_id, time()+7200); there is an error here: Warning: Cannot modify header information - headers already sent by (output started at /var/www/gsat/index_part2.php:47) in /var/www/gsat/index_part2.php on line 48 how do i fix this problem? You have have output on line 47 in index_part2.php. You cannot have any form of output before the use of the header or set_cookie functions. Quote Link to comment https://forums.phpfreaks.com/topic/108814-help/#findComment-558496 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.