Using Cookies in PHP

Language

This is a very simple and basic tutorial in PHP. This will teach you how to use and set cookie in PHP. Cookies allows the webmaster to store user's or visitor's information to be accessed on the next visit in the website. It is usually used in logging in, to store the username and password. But note, don't use cookie on an important information. Here is the code to set the cookie:
  1. $cookie_name = "visitors";
  2. $cookie_value = "GeePee";
  3. $month = 2592000 + time();
  4. setcookie($cookie_name, date("F jS - g:i A"), $month);
And here is the code to retrieve cookie:
  1. if(isset($_COOKIE[$cookie_name])) {
  2. $last = $_COOKIE[$cookie_name];
  3. echo "Welcome back, " . $cookie_value . "! <br> You last visited on ". $last. ".";
  4. } else {
  5. echo "Welcome to our site, ". $cookie_value. "!";
  6. }
Hope you learn from this easy and simple project.

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Tags

Add new comment