


The principle and relationship between session and cookie in PHP 1_PHP tutorial
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.
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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
