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

[eluser]aryan_[/eluser]
How can I read flash cookie?

I'm using this code to create a cookie:

Code:
user = SharedObject.getLocal("user");
user.data.signedup = true;
user.flush();

and, accessing it using php:

Code:
$x = $_COOKIE['signedup'];

But, unable to access. It throws an error:
Message: Undefined index: signedup

How should I access the cookie created? Please help.
#2

[eluser]Dark Preacher[/eluser]
Why don't you use CI session? It's easy enough, set variable in session via your model or controller like this:
Code:
$user = $this->session->userdata('user');
and use it like this in your views:
Code:
$x = $this->session->userdata('user')
#3

[eluser]aryan_[/eluser]
Actually, I want one signup per machine. Flash cookie is global for all browsers, and difficult to delete. That's why I'm using it.

Do you have any idea?
#4

[eluser]Dark Preacher[/eluser]
I think that you still can use CI session, but store them in DB and disable browser match, more info can be found in user guide
http://ellislab.com/codeigniter/user-gui...sions.html




Theme © iAndrew 2016 - Forum software by © MyBB