Php verifies the session as an invalid solution. php verifies the session. Php verifies the invalid session solution. php verifies the session. This article describes how php verifies the invalid session solution. Share it with you for your reference. The specific method is as follows: 1. ask php to verify that the session is invalid. php verifies the session.
This article describes how to verify invalid session in php. Share it with you for your reference. The specific method is as follows:
I. problems
It took a long time to configure the apache + php environment today. later, it succeeded, but found that the verification code image can be generated. during login verification, it was found that the session was empty and there was no value.
II. Solution
Environment: apache + php
The program code is as follows:
The code is as follows:
Process the post. php file after submission
The code is as follows:
If ($ _ SESSION ['ssioner]! = $ Ssever ){
Echo ("script" alert ('verification code must consist of four digits! '); History. back (); script "); exit;
}
The result shows that the verification code must be composed of four digits and the output session is printed:
The code is as follows:
Echo $ _ SESSION ['ssioner'];
Exit;
It was always blank, so I thought of a session file directory configured in the php environment. now we find the php. ini configuration file
Upload_tmp_dir
This directory is found to be
Upload_tmp_dir = "D: \ www.jb51.net \ tp"
I checked my D disk and found that there were only www.jb51.net files but no tp Directory. in this case, I found the problem. at that time, I created a tp directory, restart apache and you will find the sess_i40gl0p4hfep5r69j67o1k26d01 file in the tp Directory. then, you can log on again.
I hope this article will help you with PHP programming.
How can php sessions be invalid ??
SESSION_START ();
If (isset ($ _ POST ['name']) {
$ _ SESSION ['name'] = 'test ';
}
Print $ _ SESSION ['name'];
?>
In
Solution for delaying session verification code and display in php
First, you can debug your project and print your verification code information in the class. Whether it is consistent with the verification code displayed on the page. Generally, there is no problem. Unless it is referenced multiple times.
I have previously written a verification code function. you can refer to: Baidu php verification code pooy. You can find the article I wrote earlier.
The example in this article describes how php verifies that the session is invalid. Share it with you for your reference. The specific method is as follows: 1. ask...