Baking Cookies in PHP
Cookies are little tid-bits of information stored by the browser on a user’s computer. The information stored in the cookie is used to uniquely identify a user and this information is sent to server with each request so server can make use of it. In this article you’ll learn how to set, retrieve, and delete cookies to help add state to your PHP application.

