I'm trying to set a cookie using set cookie but no matter where in the code I put it I keep on getting the same type of error here is the latest error and code.
Warning: Cannot add header information - headers already sent by (output started at /var/www/html/test/index.phtml:3) in /var/www/html/test/index.phtml on line 6
<HEAD>
<?
$nameofcookie = "color";
$expicookie="time()+3600";
setcookie ( $nameofcookie, $color, $expicookie);
?>
<TITLE></TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BGCOLOR=#FFFFFF>
<?php
if (isset($color) == 0) $color = 0;
If anyone can help I wold be very greatful.
Digicide