angel123456
Infrastructure Scaling Specialist
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
100 XP
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:
And here is the code to retrieve cookie:
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.
Download
Here is the code to set the cookie:
- $cookie_name
=
"visitors"
;
- $cookie_value
=
"GeePee"
;
- $month
=
2592000
+
time
(
)
;
- setcookie
(
$cookie_name
,
date
(
"F jS - g:i A"
)
,
$month
)
;
And here is the code to retrieve cookie:
- if
(
isset
(
$_COOKIE
[
$cookie_name
]
)
)
{
- $last
=
$_COOKIE
[
$cookie_name
]
;
- echo
"Welcome back, "
.
$cookie_value
.
"! <br> You last visited on "
.
$last
.
"."
;
- }
else
{
- echo
"Welcome to our site, "
.
$cookie_value
.
"!"
;
- }
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.
Download
You must upgrade your account or reply in the thread to view the hidden content.