Introduction
Welcome to my first article for DevPapers. This tutorial will show you the basics of PHP's cookie functions. I will cover main points such as setting cookies, printing cookie values and removing a cookie.
Let's Get Eating!
As you know PHP uses functions to perform tasks. For cookie setting PHP uses the setcookie() function. Below is the syntax for setting a cookie in PHP.
setcookie ( name [, value [, expire [, path [, domain [, secure]]]]])
If this is your first time with PHP then the syntax may be confusing. Let me explain what we have up there. The name attribute of the function allows you to set the name of the cookie, this will make it possible to print out a cookie value later in this tutorial. The value attribute is the information which will be stored on the clients computer. The expire attribute is the time at which the cookie will expire and information held in the cookie will no longer be used. If this is not set then the cookie will expire when the browser closes. The path attribute is the path on the server which the cookie will be available on. Domain refers to the domain name on which the cookie is available, and finally the secure attribute (either 0 or 1) shows if the cookie should only be used over a secure (https) connection.