I have read the PHP manual information n cookies, but I'm not quite sure how to read a cookie once I set it up on the client machine. Can anyone help me with this?
Thank you
Yeah.
You set cookies like this
setcookie(\"name\", \"Chris\")
Then one that is set you can access the infomation by using the variable $name
$name // Output is Chris
does that help you any.