Welcome Guest, Not a member yet? Register   Sign In
Array cookie
#1

[eluser]EEssam[/eluser]
From PHP manual:

Example #3 setcookie() and arrays

You may also set array cookies by using array notation in the cookie name. This has the effect of setting as many cookies as you have array elements, but when the cookie is received by your script, the values are all placed in an array with the cookie's name:

<?php
// set the cookies
setcookie("cookie[three]", "cookiethree");
setcookie("cookie[two]", "cookietwo");
setcookie("cookie[one]", "cookieone");

// after the page reloads, print them out
if (isset($_COOKIE['cookie'])) {
foreach ($_COOKIE['cookie'] as $name => $value) {
echo "$name : $value <br />\n";
}
}
?&gt;

How this can be done with CI cookie's library?
http://ellislab.com/codeigniter/user-gui...elper.html

Thanks.


Messages In This Thread
Array cookie - by El Forum - 09-04-2008, 11:22 AM
Array cookie - by El Forum - 09-04-2008, 02:32 PM
Array cookie - by El Forum - 09-04-2008, 03:14 PM
Array cookie - by El Forum - 09-04-2008, 06:04 PM
Array cookie - by El Forum - 09-05-2008, 06:29 AM
Array cookie - by El Forum - 09-05-2008, 06:36 AM
Array cookie - by El Forum - 09-05-2008, 07:16 AM



Theme © iAndrew 2016 - Forum software by © MyBB