Have you ever got this error? This normally happens when you try set a cookie in amoungst the HTML code...
Code:
Warning: Cannot add header information - headers already sent by (output started at /home/public_html/connect.php:1) in /home/public_html/setcookies.php on line 9
Warning: Cannot add header information - headers already sent by (output started at /home/public_html/connect.php:1) in /home/public_html/setcookies.php on line 10
To fix this, simply add just after the very first
<?php tag:
And just before the very last
?> tag add:
That will fix your error.