PHP Cookies
Cookies are principally used to validate a clients session, they are modest parcels of information that are archived in the web browser that permit a site to match particular client qualified data to that in the database, therefore confirming the client. So what are the values? setcookie($name, $value, $expire, $path, $domain, $secure); $name – is what you want to call the cookie, we will use this to reference the cookie later $value – value of the cookie. For example "yourname". $expire – is the time in UNIX timestamp format when the cookie will expire for example, time()+”3600″. The cookie would then expire after an hour. $path – The path on the server where the cookie will be available. For example, if the path is set to “/”, the cookie will…

