I need a function to get cookies. I already know how to set cookies. -Steven
Once you've set a cookie you can simply call them with $cookie_name.
You will have to refresh the page where you've set the cookie before this will work.
-dr
would it go like: if($cookie_name('username') == "lentin64") { // ... } in the php/php3?
You set your cookie like this:
setcookie ("my_cookie", "my_value");
To call the cookie you can just use:
My cookie value is: $my_cookie