Home php教程 php手册 php接收表单提交数据实例详解

php接收表单提交数据实例详解

May 25, 2016 pm 04:48 PM
take over submit form

在php中表单提交数据有几种,一种是post和get方式,下面我来给各位php初学者详细介绍利用get,post来接收表单提交数据实例用法,有需要了解的朋友可参考.

PHP $_GET 和 $_POST变量是用来获取表单中的信息的,比如用户输入的信息PHP4.1(好像)以后取消了直接接收变量,而用 $_GET['变量名'] 接收从链接传递过来的变量, 用 $_POST['变量名'] 接收从表单提交来的变量.同样有$_FILES[],$_SERVER[]等

下面是一个 HTML 文件,这个 HTML 含有一个 HTML 表单 (HTML Form),主要用来让用户输入用户姓名的.

实例代码如下:

<form action ="get.php" method ="get">Name:  
<input type="text" name="username" /> 
<input type ="submit" value="ok" /> 
</form>
Copy after login

该 HTML 的显示界面如下:

当你在这个 HTML 文件的表单文本框输入框里输入姓名,比如 "Jacky",然后鼠标点击ok 按钮,会跳转到 get.php,在 get.php 里会显示如下图.

get.php 的源代码如下:

实例代码如下:

<?php echo $_GET["username"];?>
Copy after login
Copy after login

取表单控件的 name 值,可以获得该表单控件的数据.比如 "username" 就是表单控件文本输入框的 name 值。

实例代码如下:

<input type="text" name="username" />
Copy after login
Copy after login

用 $_GET["username"] 可以获得该文本输入框的数据.

实例代码如下:

<?php echo $_GET["username"];?>
Copy after login
Copy after login

获取 HTML 表单 (HTML Form) 单选框 (input type="radio") 数据,取表单单选框的 name 值,可以获得表单单选框的值.$_POST获取HTML表单提交数据.

下面是一个 HTML 文件,这个 HTML 含有一个 HTML Form,主要用来让用户输入用户姓名的.

实例代码如下:

Name: <input type="text" name="username" />
Copy after login

当你在这个 HTML Form 的文本框输入框里输入姓名,比如 "Jacky",然后鼠标点击ok 按钮,会跳转到 post.php,显示的输出结果是You are Jacky..post.php 的源代码如下:

实例代码如下:

You are <?php echo $_POST["username"];?>
Copy after login

取表单控件的 name 值,可以获得该表单控件的数据.比如 "username" 就是表单控件文本输入框的 name 值,

实例代码如下:

<input type="text" name="username" />
Copy after login
Copy after login

用 $_POST["username"] 可以获得该文本输入框的数据.

实例代码如下:

<?php echo $_POST["username"];?>
Copy after login

$_REQUEST变量

PHP $_REQUEST变量包含$_GET, $_POST, and $_COOKIE的内容,PHP $_REQUEST变量可以用来获取通过"GET"和"POST"这两种方法发送的表单数据.

实例代码如下:

Welcome <?php echo $_REQUEST["name"];?> .<br /> 
You are <?php echo $_REQUEST["age"];?>  years old
Copy after login

 

文章网址:

随意转载^^但请附上教程地址。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement page jump after PHP form submission How to implement page jump after PHP form submission Aug 12, 2023 am 11:30 AM

How to implement page jump after PHP form submission [Introduction] In web development, form submission is a common functional requirement. After the user fills out the form and clicks the submit button, the form data usually needs to be sent to the server for processing, and the user is redirected to another page after processing. This article will introduce how to use PHP to implement page jump after form submission. [Step 1: HTML Form] First, we need to write a page containing a form in an HTML page so that users can fill in the data that needs to be submitted.

How to handle user rights management in PHP forms How to handle user rights management in PHP forms Aug 10, 2023 pm 01:06 PM

How to handle user rights management in PHP forms With the continuous development of web applications, user rights management is one of the important functions. User rights management can control users' operating rights in applications and ensure the security and legality of data. In PHP forms, user rights management can be implemented through some simple code. This article will introduce how to handle user rights management in PHP forms and give corresponding code examples. 1. Definition and management of user roles First of all, defining and managing user roles is a matter of user rights.

How to use JavaScript to implement real-time verification of the input box content of a form? How to use JavaScript to implement real-time verification of the input box content of a form? Oct 18, 2023 am 08:47 AM

How to use JavaScript to implement real-time verification of the input box content of a form? In many web applications, forms are the most common way of interaction between users and the system. However, the content entered by the user often needs to be validated to ensure the accuracy and completeness of the data. In this article, we will learn how to use JavaScript to implement real-time verification of the content of the form's input box and provide specific code examples. Creating the form First we need to create a simple table in HTML

How to use JavaScript to realize the automatic prompt function of the input box content of the form? How to use JavaScript to realize the automatic prompt function of the input box content of the form? Oct 20, 2023 pm 04:01 PM

How to use JavaScript to realize the automatic prompt function of the input box content of the form? Introduction: The automatic prompt function of the form input box content is very common in web applications. It can help users quickly enter the correct content. This article will introduce how to use JavaScript to achieve this function and provide specific code examples. Create the HTML structure First, we need to create an HTML structure that contains the input box and the auto-suggestion list. You can use the following code: &lt;!DOCTYP

MySQL transaction processing: the difference between automatic submission and manual submission MySQL transaction processing: the difference between automatic submission and manual submission Mar 16, 2024 am 11:33 AM

MySQL transaction processing: the difference between automatic submission and manual submission. In the MySQL database, a transaction is a set of SQL statements. Either all executions are successful or all executions fail, ensuring the consistency and integrity of the data. In MySQL, transactions can be divided into automatic submission and manual submission. The difference lies in the timing of transaction submission and the scope of control over the transaction. The following will introduce the difference between automatic submission and manual submission in detail, and give specific code examples to illustrate. 1. Automatically submit in MySQL, if it is not displayed

Is rx receiving or transmitting? Is rx receiving or transmitting? Feb 20, 2023 pm 02:53 PM

rx refers to reception, which corresponds to TX (referring to output); TRX is the transceiver unit in communication, and TX and RX are the two parts of TRX; they appear in pairs in optical fiber, and the transceiver and transceiver are a pair, and the transceiver and transceiver must be at the same time. If you only receive but not send, there is a problem if you only send but not receive.

How to receive verification code with virtual number How to receive verification code with virtual number Oct 31, 2019 pm 04:52 PM

How to receive the verification code with a virtual number: first enter the Yima verification code receiving platform; then register as a website member; then open the SMS verification code service and select the operator; finally obtain the virtual mobile phone number and go to the platform where the verification code is to be sent. Fill in your mobile phone number and select [Send Verification Code].

PHP form processing: form data query and filtering PHP form processing: form data query and filtering Aug 07, 2023 pm 06:17 PM

PHP form processing: form data query and filtering Introduction In Web development, forms are an important way of interaction. Users can submit data to the server through forms for further processing. This article will introduce how to use PHP to process the query and filter functions of form data. Form design and submission First, we need to design a form that includes query and filter functions. Common form elements include input boxes, drop-down lists, radio buttons, check boxes, etc., which can be designed according to specific needs. When the user submits the form, the data will be sent to POS

See all articles