Home  >  Article  >  Backend Development  >  Summary of usage examples of POST() method in php

Summary of usage examples of POST() method in php

伊谢尔伦
伊谢尔伦Original
2017-06-11 11:00:079292browse

       提交获取表单数据是表单应用中最常用的操作,经常需要PHP后台从前台页面中获取用户在前台表单页面中提交的各种数据。表单数据传递的方式有以下的两种方法,一种为POST()方法,另外一种为GET()方法。具体采用哪种获取数据的方法是由

表单的 method 属性所指定的,下面讲解这两种方法在 Web 表单中的具体应用。使用POST()方法提交表单在使用POST()方法时,只需要将表单中的属性  method  设置成POST即可。 POST()方法不依赖于URL,不会显示在地址栏。POST()方法可以没有限制地传递数据到服务器,所有提交的信息在后台传输,用户在浏览器端是看不到这一过程的,安全性会更高。所以POST()方法比较适合用于发送一个保密的(如银行账号)或者容量较大的数据

1. php中提交表单数据的POST()方法和GET()方法

Summary of usage examples of POST() method in php

简介:获取表单数据是表单应用中最常用的操作,经常需要PHP后台从前台页面中获取用户在前台表单页面中提交的各种数据。表单数据传递的方式有以下的两种方法,一种为POST()方法,另外一种为GET()方法。具体采用哪种获取数据的方法是由表单的 method 属性所指定的,下面讲解这两种方法在 Web 表单中的具体应用。

2. jquery如何实现ajax技术3:$.get()

Summary of usage examples of POST() method in php

简介:摘要: 今天要向大家介绍的是jQuery中的$.get()。它同样能够让我们以非常少的代码量完成网站开发中的ajax需求。 $.get()函数的参数和我们在《jquery如何实现ajax技术2:$.post()》中介绍的$.post()参数相同。具体如下...

3. jquery如何实现ajax技术2:$.post()

Summary of usage examples of POST() method in php

简介:摘要: 在《jquery如何实现ajax技术1:$.ajax()》中我们已经学习了如何利用jQuery的$.ajax()函数来实现ajax的开发需要。但是相对于其它一些函数来说,$.ajax()的实现过程和代码量还是相对复杂。...

4. Ajax中get方法与post方法的区别

Summary of usage examples of POST() method in php

简介:Ajax中get和post方法区别    一、get()和post()基本区别  1.get是把参数数据队列加到提交表单的ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到。post是通过HTTP post机制,将表单内各个字段与其内容放置在HTML HEADER内一起传送到ACTION属性所指的URL地址。用户看不到这个过程。   2.对于get方式,服务器端用Re ...

5. 关于在yii2框架下接口接收ios端传来数据

简介:用Yii::$app->request->post();接收ios传来的数据,将接收到的数据打印出来会显示值为null。如果用$_data = empty($_POST) ? json_decode(file_get_contents('php://input'), TRUE) : $_POST;接收ios传来...

6. yii2控制器Controller Ajax操作示例

简介:: yii2控制器Controller Ajax操作示例:本文实例讲述了yii2控制器Controller Ajax操作的方法。分享给大家供大家参考,具体如下:public function actionSample(){if (Yii::$app->request->isAjax) {$data = Yii::$app->request->post();$searchname= explode(":", $data['searc

7. wordpress custom field output code design_PHP tutorial

Introduction: wordpress custom field output code design. !--For example, if this is a slideshow-- div class=flexslider ?php if ( have_posts() ) :the_post(); ? ul class=slides ?php $images = get_post_meta($post-ID, images, false); //1

8. Detailed explanation of the usage of nine super global variables in php (2)_PHP tutorial

Introduction: Detailed explanation of the usage of php9 super global variables (2). Today let’s talk about $_GET() and $_POST(). In fact, it is easy to understand. From the superficial meaning, you can see that it is to obtain the data of the post and get forms. In fact, it is exactly the same. Let’s do some professional

9. ThinkPHP form automatic verification application, thinkphp form verification_PHP tutorial

Introduction: ThinkPHP form automatic verification application, thinkphp form verification. ThinkPHP form automatic verification application, thinkphp form verification uses TP 3.2 framework public function add_post(){ //Validation rules $rule=array( array('name','require','Please enter your name',1),//Required

10. ThinkPHP form automatic verification application example, thinkphp example_PHP tutorial

Introduction: ThinkPHP form automatic verification Application example, thinkphp example. ThinkPHP form automatic verification application example, thinkphp example uses TP 3.2 framework public function add_post(){//Validation rules $rule=array(array('name','require','Please enter your name', 1),//Must be verified

[Related Q&A recommendations]:

##javascript - How long does an ajax request usually wait? ##$.ajax Cross-domain options

javascript - After the vue code is built, even after deploying to the external network and adjusting the background interface, it cannot be executed

javascript - What is the method of getPost()? Is there any source?

##android - View.post()

The above is the detailed content of Summary of usage examples of POST() method in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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