How To Specify Domain and Path for a Cookie

Q

How To Specify Domain and Path for a Cookie? - PHP Script Tips - Understanding and Managing Cookies

✍: FYIcenter.com

A

If you want to specify domain and path for cookie, you can use the setcookie() function with two extra parameters. The sample PHP script below shows you how to set the domain and path attributes for temporary and persistent cookies:

<?php
  setcookie("LoginName","FYICenter", NULL, "/", ".fyicenter.com");
  setcookie("PreferredColor","Blue", NULL, "/", ".fyicenter.com");
  setcookie("CouponNumber","07470433",time()+60*60*24*7,
    "/store", ".fyicenter.com");
  setcookie("CouponValue","100.00",time()+60*60*24*7,
    "/store", ".fyicenter.com");
  print("2 temporary cookies were delivered.\n");
  print("2 consistent cookies were delivered.\n");
?>

2007-04-24, 4835👍, 0💬