SESSION management in PHP4_PHP tutorial
The most eye-catching new feature of PHP4 is the SESSION management function. When others visit your site, you can save variables to the SESSION object to achieve many new functions.
What is SESSION
If you are still unclear, let me first explain what a SESSION is. A SESSION starts when someone visits your website and ends when he leaves the website. Of course, you can also terminate it in the program. Basically, COOKIE is related to browsing Associated with the server, some resources on the server are used to save SESSION variables. By default, PHP4 uses files to save these variables. Of course, in theory, it can also be saved in a database or shared memory.
All web pages that use the SESSION feature of PHP4 must call the session_start() function to let the PHP4 engine load SESSION-related information into memory. The session_start function will try to find the SESSION ID from COOKIE or the parameters of the current HTTP request. If not found, a new SESSION object will be created.
What is a SESSION variable?
The SESSION variable is actually an ordinary global variable. When registered (declared) as a SESSION variable, all PHP4 All web pages with the SESSION function can access its value. To register a variable as a SESSION variable, just assign a value to the variable first, and then call session_register("variable name"). In subsequent web pages that use the SESSION function (through session_start) , the variable "variable name" does not need to be re-registered as a SESSION variable. It is just like an ordinary variable, and its value is what was assigned to it previously. If the value of this variable is changed in the program, it will be automatically re-registered and saved. , and can be used normally in its subsequent web pages.
So, what can it do?
Good question! There are many ways to use SESSION management and SESSION variables. Here, I will give an example to illustrate. If you are building a virtual community site, you may want to track the currently verified user name and how many new messages he has. In order to reduce the load on the database, you need to use other methods to save this information. There are two methods :
Use three COOKIES
authenticatied_user - the current verified user name
num_message - how many new messages he has
expire_time - the expiration time limit of COOKIE
Use SESSION, register three SESSION variable
The first method has great security risks. Others can forge COOKIE and then use another account to access the system. Besides, all information is implemented through the HEADER() function, which is quite troublesome. In addition, when If the user's browser refuses to accept one of the COOKIES, the entire data will be incomplete.
With SESSION, only one COOKIE can save all the information. The security is also better.
Disadvantages
Using any server-side scripting language, SESSION can provide a very free, flexible and powerful function. But SESSION in PHP4 has some limitations: -Objects themselves cannot be saved in SESSION -Saved in SESSION The data efficiency is not very high because PHP4 uses files to save SESSION information.

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

SPDIFOUT connection line sequence on the motherboard. Recently, I encountered a problem regarding the wiring sequence of the wires. I checked online. Some information says that 1, 2, and 4 correspond to out, +5V, and ground; while other information says that 1, 2, and 4 correspond to out, ground, and +5V. The best way is to check your motherboard manual. If you can't find the manual, you can use a multimeter to measure it. Find the ground first, then you can determine the order of the rest of the wiring. How to connect motherboard VDG wiring When connecting the VDG wiring of the motherboard, you need to plug one end of the VGA cable into the VGA interface of the monitor and the other end into the VGA interface of the computer's graphics card. Please be careful not to plug it into the motherboard's VGA port. Once connected, you can

pipenv tutorial: Create and manage virtual environments, specific code examples are required Introduction: With the popularity of Python, the number of project development is also increasing. In order to effectively manage the Python packages used in projects, virtual environments have become an essential tool. In this article, we'll cover how to use pipenv to create and manage virtual environments, and provide practical code examples. What is pipenv? pipenv is a virtual environment management tool widely used by the Python community. It integrates p

Please recommend which 1155-pin CPU is the best. The current 1155-pin CPU with the highest performance is Intel Corei7-3770K. It has 4 cores and 8 threads, a base frequency of 3.5GHz, and supports TurboBoost2.0 technology, which can reach up to 3.9GHz. In addition, it is equipped with 8MB of level 3 cache and is an excellent processor with the LGA1155 pin, the most powerful CPU Intel Core i73770K. The LGA1155 interface is the interface type used by second and third generation Core processors. The best performing one is Intel Core i73770K. The parameters of this processor are as follows: 1. Applicable type: desktop; 2. CPU series: Core i7; 3. CPU

There is no concept of a class in the traditional sense in Golang (Go language), but it provides a data type called a structure, through which object-oriented features similar to classes can be achieved. In this article, we'll explain how to use structures to implement object-oriented features and provide concrete code examples. Definition and use of structures First, let's take a look at the definition and use of structures. In Golang, structures can be defined through the type keyword and then used where needed. Structures can contain attributes

With the rapid development of the Internet, programming languages are constantly evolving and updating. Among them, Go language, as an open source programming language, has attracted much attention in recent years. The Go language is designed to be simple, efficient, safe, and easy to develop and deploy. It has the characteristics of high concurrency, fast compilation and memory safety, making it widely used in fields such as web development, cloud computing and big data. However, there are currently different versions of the Go language available. When choosing a suitable Go language version, we need to consider both requirements and features. head

How to partition disk management With the continuous development of computer technology, disk management has become an indispensable part of our computer use. As an important part of disk management, disk partitioning can divide a hard disk into multiple parts, allowing us to store and manage data more flexibly. So, how to partition disk management? Below, I will give you a detailed introduction. First of all, we need to make it clear that there is not only one way to partition disks. We can flexibly choose the appropriate disk partitioning method according to different needs and purposes. often

C++ functions have the following types: simple functions, const functions, static functions, and virtual functions; features include: inline functions, default parameters, reference returns, and overloaded functions. For example, the calculateArea function uses π to calculate the area of a circle of a given radius and returns it as output.

Exploring the role and management methods of the master directory in the Oracle database. In the Oracle database, the master directory (MasterDirectory) is an important object. Its main function is to specify the default storage location of all data files and control files in the Oracle database. By setting the home directory, you can easily manage the storage and access of database files and improve the performance and security of the database. The home directory can be managed in the following ways: 1. Create a home directory To create a home directory, you can
