Home Backend Development PHP Tutorial The principle and relationship between session and cookie in PHP 1_PHP tutorial

The principle and relationship between session and cookie in PHP 1_PHP tutorial

Jul 14, 2016 am 10:07 AM
cookie php session and relation principle and merchandise exist friend of Know experience Buy Shopping

Friends who have shopping experience know that when purchasing goods, the website will record the goods you selected into the shopping cart. These are implemented using session and cookie technologies. Of course, different web platform technology implementation details are slightly different, but almost Both session and cookie are used.

Why are sessions and cookies used? It is necessary to talk about the http protocol. The HTTP protocol is stateless. In layman’s terms, you don’t know what happened in the previous second.

The principle and relationship between session and cookie in PHP 1_PHP tutorial

If you need to track a user’s status on the site, obviously this will not work. Let’s talk about COOKIE technology

Cookie: can be used to share some information on multiple pages. Cookies are supported by the HTTP protocol. When the browser requests a page from the server, the server returns an HTTP message + data, and the browser will parse the data received from the server. HTTP message to perform corresponding operations.

Server message:

HTTP/1.1 200 OK
Date: Thu, 06 Dec 2012 17:05:01 GMT
Server: Apache/2.2.17 (Win32) PHP/5.3.5
X-Powered-By: PHP/5.3.5
Set-Cookie: mycookie=Hello%2CCookie; expires=Thu, 06-Dec-2012 18:05:01 GMT; path=/
Content-Length: 44
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html

This is where we only focus on Set-Cookie: mycookie=Hello%2CCookie; expires=Thu, 06-Dec-2012 18:05:01 GMT; path=/
This is the cookie information that tells the browser to save it. In layman’s terms, it means: “Browser please save this cookie information”

The format is a key-value pair such as a cookie. The key is: publicinfo and the value is: hello, cookie. The format is: publicinfo=hello,cookie

Browser request message:

GET /cookie/cookie1.php HTTP/1.1
Accept: */*
Accept-Language: zh-CN
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; . NET4.0C; .NET4.0E; Tablet PC 2.0; InfoPath.2)
Accept-Encoding: gzip, deflate
Host: localhost
Connection: Keep-Alive
Cookie: C4vN_2132_saltkey=MW4qwm12; C4vN_2132_lastvisit=1354808405; C4vN_2132_sid=Dl9pU9; C4vN_2132_lastact=1354812024%09search.php%09forum; C4vN_2132_forum_lastvisit=D _36_1354812013; C4vN_2132_visitedfid=36; PHPSESSID=ggcr13idghctd9mi4gqllvcvs5; zhangqiang1=Hello%2CCookie

Here the browser sends the client's cookie information to the server, so that some status information can be maintained between the request and the response.

Use of cookies in PHP

There are two ways to use cookies in PHP,

1. Use the system function setcookie to set

2. Use header function to construct cookie message

With the previous knowledge, you know that these two functions actually do the same thing and the results are the same. In the end, the cookie information must be written into the HTTP message

Method 1:

setcookie(cookie key name, value, expiration time, access directory)

setcookie("mycookie","Hello,Cookie",time()+3600,"/");
echo "View Cookie";
?>
Method 2: (Here the cookie to be set is directly written into the HTTP message)

header("Set-Cookie: mycookie=123; expires=Tue, 04-Dec-2012 15:58:18 GMT");
echo "View Cookie";
Access cookies on the server side:

echo $_COOKIE["mycookie"];
?>
Accessing cookies is very simple, just use the super global array $_COOKIE, and fill in the cookie key in [].

The principle of using cookies is to know how some shopping websites or login functions are implemented, but cookies also have shortcomings

Security: Cookies are stored on the client side, which means they can be tampered with. Some important data cannot be stored in cookies, such as usernames and passwords.

Network transmission: Cookies must be included in HTTP request and response messages, so they cannot store too much data.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477887.htmlTechArticleFriends who have shopping experience know that when purchasing goods, the website will record the goods you selected into the shopping cart. These are implemented using session and cookie technologies, of course different web platform technologies...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles