Please help?!
I don't know anything about cookies and need some friendly explanation.
This is what I have manged so far.
setcookie(name, $value);
I can't get the rest to work. I tried to set the path. But in my browser info thingy it keeps showing the wrong path.

As you can see i'm clueless in this area, so some help will be appreciated. Thanks in advance!

this is what makes a cookie

setcookie("user", $user, $expire);

$user and $expire are php vars
you set them before hand

so after that the cookie is stored and u can echo it

echo $_COOKIE["user"];

or drop it into vars or what ever you like

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.