Forum Moderators: coopster
I had this problem when I was making a language changing script for my site.
I have 1 PHP document and another included to it in the beginning of the page.
This is all referring to headers in the included page:
session_start();
header("Cache-control: private");
On the main page I tried to set cookie:
setcookie("use_lang", $_GET['newlang']);
It gives me this error:
Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\xampp\htdocs\WebTicks\profile.php:15) in C:\Program Files\xampp\htdocs\WebTicks\profile.php on line 102