If you want cookie number two to be the same value as cookie number three, then
- You set cookies
setcookie("cookie2", "cookie2_value");
setcookie("cookie3", "cookie3_value");
- Then to set cookie2 value to that of cookie three you do
setcookie("cookie2", "$cookie3");
Hope that helps,
Di