Conversation on the couch (3)_PHP tutorial
Market Game
Now that you know the basics, let’s get a little more complex and demonstrate a real-life session application. Let's assume for a moment that you have a financial portal that allows its user to select four stocks and then displays the current market price of each stock and displays on each page the user's progress on the site.
In the following example, we assume that the user has been authenticated and logged in to the site. We used a MySQL database, which has a table named user_info, which is used to store the user's four stocks and unique user name. Once a session is initialized, we register variables to hold the username and four stocks, then connect to the database to retrieve the values and display them on the page.
The code is as follows:
$#@60;?php
//Initialize a session session_start();
//Register session variable
//User name
session_register (username);
//Selected stock variables
session_register(stock1);
session_register(stock2);
session_register(stock3);
session_register(stock4);
//Connect to MySQL
$db = mysql_connect("someserver.com", "tom", "jones");
//Select database
mysql_select_db("stock_db", $db);
//Use SQL to query the database
$query = "select stock_pref1,stock_pref2,stock_pref3,stock_pref4
from user_info where username=$username";
$ result = mysql_query($query,$db);
//Get the stock code from the database and assign it to the session variable
list($stock1,$stock2,$stock3,$stock4) = mysql_fetch_row ($result);
echo "Hi $username!$#@60;br$#@62;";
echo "Your selected stocks are:$#@60;br$#@62 ;";
echo "$stock1$#@60;br$#@62;";
echo "$stock2$#@60;br$#@62;";
echo "$stock3 $#@60;br$#@62;";
echo "$stock4$#@60;br$#@62;";
// code to generate rest of page
?$#@62;
PHP4 has many session-related functions - most of which require no explanation, so they are listed below.
session_destroy(): Release all session data (very useful when a user logs out of a site, you need to release all variables created during his visit).
session_name():Set or read the name of the current session.
session_id():Set or read the id value of the current session.
session_unregister(session_variable_name):Unregister a variable from a particular session.
session_is_registered(): Check whether a session variable has been registered.
For example:
$#@60;?php
session_start();
if(session_is_registered(username))
{
echo "A session variable by the name "username "
already exists";
}
else
{
echo "No variable named "username" registered yet.
Registering...";
session_register(username) ;
}
?$#@62;
session_encode() and session_decode():Encode session data into a string or decode a string into session data.
Here you may use them:
$#@60;?php
session_start();
session_register(someString);
$someString="I hate cats!";
//Compile all session variables into a string
$sessStr = session_encode();
//You can see it here
echo $sessStr;
echo " $#@60;br$#@62;$#@60;br$#@62;";
//Replace with dogs where cats appear
$sessStr = ereg_replace(" cats","dogs",$sessStr);
//The session variable is updated after decoding
session_decode($sessStr);
//Display $sessstr again
echo $someString;
?$#@62;
Finally, before starting PHPLIB, there is a technical issue you should be aware of - all the examples above use cookies to save the session id value on the client side. But what happens if the user's browser is set to reject cookies?
If this happens, a session id needs to be passed from one page to another by embedding it in the URL. For example: $#@60;a href="http://www.someserver.com/admin/preferences.php3?PHPSESSID=$#@60;? echo "$PHPSESSID"; ?$#@62;"$# @62;Edit Your Portfolio! $#@60;/a$#@62;
This can ensure that the session variable is valid in subsequent pages.

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

If Nvgpucomp64.dll is causing your game to crash frequently, the solutions provided here may help you. This problem is usually caused by outdated or corrupted graphics card drivers, corrupted game files, etc. Fixing these issues can help you deal with game crashes. The Nvgpucomp64.dll file is associated with NVIDIA graphics cards. When this file crashes, your game will crash too. This usually happens in games like LordsoftheFallen, LiesofP, RocketLeague, and ApexLegends. Nvgpucomp64.dll crashes games on Windows PC if N

In today's situation where almost all games are online, it is not advisable to ignore the optimization of home network. Almost all routers are equipped with NATBoost and QoS features designed to enhance users' gaming experience. This article will explore the definition, advantages and disadvantages of NATBoost and QoS. NATBoost vs. Qos for games; which one is better? NATBoost, also known as Network Address Translation Boost, is a feature built into routers that improves their performance. It's especially important for gaming because it helps reduce network latency, which is the time it takes for data to be transferred between the gaming device and the server. By optimizing the data processing method within the router, NATBoost achieves faster data processing speed and lower latency, thus changing the

According to news from this website on February 23, NVIDIA updated and launched the NVIDIA application last night, providing players with a new unified GPU control center, allowing players to capture wonderful moments through the powerful recording tool provided by the in-game floating window. In this update, NVIDIA also introduced the RTXHDR function. The official introduction is attached to this site: RTXHDR is a new AI-empowered Freestyle filter that can seamlessly introduce the gorgeous visual effects of high dynamic range (HDR) into In games that do not originally support HDR. All you need is an HDR-compatible monitor to use this feature with a wide range of DirectX and Vulkan-based games. After the player enables the RTXHDR function, the game will run even if it does not support HD

The superpeople game can be downloaded through the steam client. The size of this game is about 28G. It usually takes one and a half hours to download and install. Here is a specific download and installation tutorial for you! New method to apply for global closed testing 1) Search for "SUPERPEOPLE" in the Steam store (steam client download) 2) Click "Request access to SUPERPEOPLE closed testing" at the bottom of the "SUPERPEOPLE" store page 3) After clicking the request access button, The "SUPERPEOPLECBT" game can be confirmed in the Steam library 4) Click the install button in "SUPERPEOPLECBT" and download

Friends who have played enough AAA masterpieces and mobile games, do you want to relive the computer games of your childhood? Then let’s look for Spider Solitaire in Windows 11 together! Click the Start menu on the interface, click the "All Apps" button; click "All Apps". Find and select "MicrosoftSolitaireCollection", which is Microsoft's Solitaire series game application; Solitaire series game selection. After loading is complete, enter the selection interface and find "Spider Solitaire"; select "Spider Solitaire". Although the interface has changed slightly, it is still the same as before

According to news from this site on April 20, ASUS recently released a BIOS update, which improves instability such as crashes when running games on Intel's 13th/14th generation processors. This site previously reported that players reported problems including that when running the PC demo version of Bandai Namco's fighting game "Tekken 8", even if the computer has sufficient memory and video memory, the system will crash and prompt an error message indicating insufficient memory. Similar crashing issues have also appeared in many games such as "Battlefield 2042", "Remnant 2", "Fortnite", "Lord of the Fallen", "Hogwarts Legacy" and "The Finals". RAD published a long article in February this year, explaining that the game crash problem is a combination of BIOS settings, high clock frequency and high power consumption of Intel processors.

There is no sound when playing games on iPad. Possible reasons. When using iPad for game entertainment, it is very frustrating to suddenly find that there is no sound. A silent gaming experience will undoubtedly reduce the fun significantly and make people feel confused and dissatisfied. So, when we encounter the problem of no sound when playing games on iPad, what are the possible reasons? This article will analyze and solve the possible causes of such problems. Volume settings are incorrect First, we need to check the iPad’s volume settings. Physical buttons on the side or top of the iPad can

Various games can be purchased in the small black box, so how do you add the purchased games to Steam? Users need to activate the product on Steam in Steam, and then copy the activation code in the small black box to activate. This introduction to the method of storing purchased games into Steam will tell you the specific method. The following is a detailed introduction, hurry up Come and take a look! How to add games purchased from Little Black Box to Steam Answer: Activate the product on Steam in Steam to add it to the warehouse. Specific methods: 1. First, click the game button on Steam. 2. Click Activate product on Steam. 3. Then click Next in the window that appears. 4. Paste the purchase code in the small black box in the product activation. 5. Then click Next to add
