Personal insights on predefined variables in PHP
What are the predefined variables in PHP?
#Predefined variables are also called super global variables.
definition:
Predefined variables are variables defined by the system itself and can be used directly. Predefined variables all exist in the form of arrays.
There are many kinds of predefined PHP, including our get, post, etc., which are all predefined variables of PHP. Let's take a look at how these predefined variables are used.
1.$_GET variable
$_GET variable will be "automatically stored" (saved/loaded) submitted GET data into a file.
The GET data is the data submitted when a page is requested in "get" mode.
Code Demonstration
Create a form with two input boxes that can output numbers and submit
<form action="1.php" method="get"> 姓名:<input type="text" name="username"> <br> 年龄:<input type="text" name="age"> <br> <input type="submit" value="提交"> </form>
$name = $_GET['username']; $age = $_GET['age']; echo "<br>姓名为:".$name; echo "<br>年龄为:".$age;
2 The .$_POST
#$_POST variable will "automatically store" (save/load) the POST data submitted to a file.
The POST data is the data submitted in the "post" mode in a form
Code demonstration
There is a form with two inputs Box, you can fill in numbers, there is a "submit button", click submit, you can calculate their sum and output
<form action="1.php" method="POST"> 数字1 <input type="text" name="num1"> <br> 数字2 <input type="text" name="num2"> <br> <input type="submit" value="计算"> </form>
$num1 = $_POST['num1']; $num2 = $_POST['num2']; $result = $num1 + $num2; echo "相加计算的结果为:",$result;
3.$_REQUEST
Represents the collection of data submitted by the browser through the "get" method or the "post" method.
That is: it can receive both get data and post data!
Usually, a form only submits one form of data, either get data or post data!
4.$_SERVER
It represents some "basic information" or system information on the client or server side in any request
Commonly used ones are:
PHP_SELF: Indicates the currently requested web page address (excluding the domain name part)
SERVER_NAME: Indicates the current Requested server name
SERVER_ADDR: Indicates the currently requested server IP address
DOCUMENT_ROOT: Indicates the currently requested website physical path (apache settings site That one)
REMOTE_ADDR: Indicates the IP address of the currently requested client
SCRIPT_NAME: Indicates the current web page address
Summary:
In this way, we can obtain information such as user session, user operating system environment and local operating system environment through these predefined variables.
The above is the detailed content of Personal insights on predefined variables in PHP. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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



PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

The article discusses symmetric and asymmetric encryption in PHP, comparing their suitability, performance, and security differences. Symmetric encryption is faster and suited for bulk data, while asymmetric is used for secure key exchange.

Article discusses retrieving data from databases using PHP, covering steps, security measures, optimization techniques, and common errors with solutions.Character count: 159

The article discusses implementing robust authentication and authorization in PHP to prevent unauthorized access, detailing best practices and recommending security-enhancing tools.

Prepared statements in PHP enhance database security and efficiency by preventing SQL injection and improving query performance through compilation and reuse.Character count: 159

The article discusses the mysqli_query() and mysqli_fetch_assoc() functions in PHP for MySQL database interactions. It explains their roles, differences, and provides a practical example of their use. The main argument focuses on the benefits of usin
