


Discuss how to obtain submitted data in PHP variable parsing order_PHP tutorial
Since the link URL of the submission was not informed after submission, this BUG has survived to this day. However, this BUG does not appear in every submission. After several tests, it was found that it only occurs when multiple submissions are made in a row. Since the submitted form was relatively complex and was entered in several parts, it was suspected that an error occurred in the middle part.
The troubleshooting process starts with var_dump($_REQUEST) in each process, then the error link is found during the second consecutive submission. In the process of submitting the first form to the second form, the $_REQUEST array Change occurs. At this point, we need to take another look at the $_REQUEST array:
The manual says it contains variables submitted to the script via GET, POST and COOKIE mechanisms, so this array is not trustworthy. In this way, var_dump($_REQUEST) is decomposed into var_dump($_POST), var_dump($_GET), and var_dump($_COOKIE). The problem becomes clearer. It turns out that in order to save values between multiple page forms, COOKIE was tried. Although the COOKIE is destroyed when the SESSION ends without setting the expire item, if multiple advertisements are submitted continuously in a session, the value of the form POST will be overwritten by the value previously saved in the COOKIE. The reason why there is only a partial error is that When saving to COOKIE, the COOKIE variable names are prefixed, except for the url variable, which still uses the same variable name.
The problem has been found, but there are new questions. With the same variable name, why does COOKIE cover POST and not the other way around? So we finally come to the variables_order setting item mentioned in the title. The original text in php.ini is as follows:
This directive describes the order in which PHP registers GET, POST, Cookie,
Environment and Built-in variables (G, P, C, E & S respectively, often
referred to as EGPCS or GPC). Registration is done from left to right, newer
values override older values.
means that Settings describe the order of PHP parsing variables, including $_GET, $_POST, $_COOKIE, $_ENV, $_SERVER array.
The parsing order is from left to right, and the new value overwrites the old value after parsing. The default setting is EGPCS (Environment, GET, POST, Cookie, Server).
If it is set to "GP", it will cause PHP to completely ignore environment variables, cookies and server variables, and overwrite the variables of the same name of the GET method with variables of the POST method.
Conclusion:
As the manual says, $_REQUEST is an array that is not trustworthy. To try to avoid similar problems, you should explicitly use the $_POST or $_GET array when getting the submitted value.
In special cases, you can adjust the variables_order setting so that you can always get the submission data you want.

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
