I am having problems setting a cookie. It does not seem to work.
View http://www.gowestbend.com/test.php for an example.
Here is how I set the cookie:
<?php
setcookie("cookie1","hi",time()+14400,"/",".gowestbend.com",0);
?>
Here is how I am trying to retrieve the cookie:
<?php echo $cookie1 ?>
Is there something wrong with how I set the cookie? Or is there something that may be wrong on the server that I am using? Please help a.s.a.p if possible. Thanks in advance.