up vote 0 down vote favorite
share [g+] share [fb]

I store an array of values in my cookie as a string (with ',' as separator). I update them using explode(), implode() and setcookie() methods in a custom function set_Cookie() and it works great.

function set_Cookie($name, $position, $value) {
    $cookie = ($_COOKIE[$name]);
    $cookie_exp = explode(",", $cookie);
    $cookie_exp[$position] = $value;
    $cookie_imp = implode(",", $cookie_exp);
    setcookie($name,$cookie_imp);
}


The only problem I have is when I try to call the function multiple times - only the last call succeeds in updating the value. In other words: In the code below only 'position3' would get updated with 'value3' but other positions would not get updated at all:

set_Cookie('cookie1','$position1','value1');
set_Cookie('cookie1','$position2','value2');
set_Cookie('cookie1','$position3','value3');


Initial cookie1 values: 0,0,0

Result: 0,0,value3


What am I missing?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

To put greg's point into code:

function set_Cookie($name, $position, $value) {
    $cookie = ($_COOKIE[$name]);
    $cookie_exp = explode(",", $cookie);
    $cookie_exp[$position] = $value;
    $cookie_imp = implode(",", $cookie_exp);
    setcookie($name,$cookie_imp);

    $_COOKIE[$name] = $cookie_imp;
}
link|improve this answer
Thank you so much man! You saved my day! – est Nov 24 '09 at 0:07
feedback

Calling setcookie doesn't update the value in $_COOKIE.

link|improve this answer
Could you elaborate? – est Nov 23 '09 at 22:28
It actually does update the value, but only in the last call. – est Nov 23 '09 at 22:40
feedback

Your function takes 3 arguments. It looks like you are not passing the position in your calls. Passing value as second argument will mangle your cookie.

EDIT: Can you please show us your initial value of cookie1 and for each function call what position value you sent and what the result was ? Also, try making only the first two calls and in another case, make 4 calls and see if the situation of value-changes-only-at-last-call persists.

link|improve this answer
Updated the initial cookie values and the result. Maybe it has something to do with sending the cookies in the headers? I don't know i'm puzzled... – est Nov 23 '09 at 23:04
Yes I already checked it with two, four and more calls. Always the same story. – est Nov 23 '09 at 23:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.