/    Sign up×
Community /Pin to ProfileBookmark

while (list($Index, $Value) = each ($_COOKIE)) – problem

I have a array cookie approx like this:
SESID=blablabla
var[1]=text1
var[2]=text2
var[3]=text3
name = test

The 1st time i call the “get_basked_index()” function it returns the nummer of the var[] record (in this case 3)
But when i call this function again for the 2nd time the record returns 0

How is this posible ?

[CODE]

function get_basked_index()
{
$basked_counter = 0;
while (list($Index, $Value) = each ($_COOKIE)) {
if (is_array($Value)) {
while (list($j, $waarde) = each ($Value)) {
$basked_counter++;
}
}
}

return $basked_counter;
}

[/CODE]

Could someone help me with this problem ?

to post a comment
PHP

0Be the first to comment 😎

×

Success!

Help @anneveld spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...