im running pretty much the same configuration on my computer and it worked fine for some reason. i.e. (Code)
<?php
setcookie('first','value1');
setcookie('second','value2');
echo ("<br/>");
echo $COOKIE['first'];
echo ("<br/> HELLO <br/>");
echo $COOKIE['second'];
?>
Result
value1
HELLO
value2
Sorry I could not help more.
Sunit