Hello,
I'm trying to set a cookie with the following code but it never works. I don't get any errors or anything, the cookie is just never set. Do you see anything wrong with this?
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.style1 {color: #CCCCCC}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
setcookie("NightLink", "Y", time()+864000, "/", ".jasondebrum.ca", 0);
?>
<div align="center" class="style1"><a href="/resume.php">enter</a></div>
</body>
</html>
Thanks!