WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Submit Site
Forex Trading Online forex trading platform

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : More about cookies
Categories : Cookies, PHP Update Picture
Rasmus Lerdorf
Date : Oct 23rd 1998
Grade : Be the 1st to grade this Code Example
Viewed : 7913
File : No file for this code example.
Images : No Images for this code example.
Search : More code by Rasmus Lerdorf
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

> There is something i'm not sure about. As i understand, You only need to
> set a cookie, you dont need to get it. All you need to do is check if it
> exists.

Just like you don't need to get variables that come via a form submit, for
example.

> What i want to know is does php actually read all of the cookies on the
> client side and assigns them as global vars? how does it know to call
> "MyCookie"?

PHP doesn't go and get anything. The web browser sends the cookie when
appropriate. Each cookie has a host associated with it. It can
optionally also have a path, and if it isn't a session cookie it will have
an expire time. If these various things check out, then the web browser
sends the cookie as part of the request header in a header called,
"Cookie" (strangely enough). PHP takes this header and parses it and
pulls out the various cookie names and turns them into variables. So, if
you did a SetCookie("MyCookie","Boaz Yahav"); then PHP will automatically
create a variable called $MyCookie with a value of "Boaz Yahav" whenever
the web browser decides it should send this cookie as part of its request.

> What if i dont put a directory and dont put a domain in the setcookie?

Well, you can't not put a domain. There is no option to put the domain
there. The browser will automatically associate the cookie with the
domain it is set from. If you don't put a path the cookie will be sent to
all pages on that domain.




PHP4 MYSQL Authentication Script with cookie. Short & Sweet
Categories : Authentication, Apache, Cookies, PHP, MySQL
A very simple PHP single password cookie based login without usernames.
Categories : PHP, Cookies, Security, Beginner Guides
Multilingual php webpage
Categories : PHP, Languages, Cookies
Authentication script to authenticate users in Active Directory through LDAP.
Categories : LDAP, Authentication, Cookies, PHP
cookie
Categories : Cookies, PHP
Example voting script. Lets people enter suggestions and vote for existing ones.
Categories : MySQL, PHP, Cookies, Complete Programs, Databases
Function that allows a Javascript cookie to be set after HTML has been outputted to the page.
Categories : PHP, Java Script, Cookies, HTML and PHP
The Best Authorize
Categories : PHP, MySQL, Cookies
Secure Login
Categories : PHP, MySQL, Cookies, Security
Simple Cookie example
Categories : PHP, Beginner Guides, Cookies
With this class you can use cookies with chips
Categories : PHP, Cookies
Query2Report : Generating Html, Pdf and Csv Reports from SQL Query
Categories : PHP, PHP, HTML, PDF, Excel
How to make sure a that $foo is from a cookie and not from the URI.
Categories : PHP, Variables, Global Variables, Cookies
Function that does language negotiation based on the Accept-Language header, a cookie or host name
Categories : HTTP, PHP, Cookies
Cross Browser Session Starter
Categories : PHP, Sessions, Cookies