search
HomeWeb Front-endHTML TutorialThe difference between the two data transmission methods of method=post/get in the Form form_HTML/Xhtml_Web page production

Form provides two methods of data transmission - get and post. Although they are both ways of submitting data, they are very different in actual transmission and may have a serious impact on the data. Although the Web container has shielded some differences between the two in order to conveniently obtain variable values, understanding the differences between the two will also be helpful in future programming.

The get and post methods in Form correspond to the GET and POST methods in the HTTP protocol respectively during the data transmission process. The main differences between the two are as follows:

1. Get is used to obtain data from the server, while Post is used to transfer data to the server.

2. Get adds the data in the form to the URL pointed to by the action in the form of variable=value, and the two are connected using "?", and each variable is connected using "&"; Post puts the data in the form into the data body of the form, and passes it to the URL pointed to by the action in a manner corresponding to variables and values.

3. Get is unsafe because during the transmission process, the data is placed in the requested URL, and many existing servers, proxy servers or user agents will record the request URL in log files. , and then put it somewhere so that some private information may be seen by a third party. In addition, users can also see the submitted data directly on the browser, and some internal system messages will be displayed in front of the user. All Post operations are invisible to users.

4. The amount of data transferred by Get is small, mainly because it is limited by the URL length; while Post can transfer a large amount of data, so only Post can be used to upload files (of course there is another reason, which will be discussed later) mentioned).

5. Get restricts the value of the data set in the Form form to be ASCII characters; while Post supports the entire ISO10646 character set.

6. Get is the default method of Form.

The data transmitted using Post can be correctly converted into Chinese by setting the encoding; while the data transmitted by Get has not changed. We must pay attention to this in future procedures.

_______________________________________________________________________________________________

1. The Get method passes the user's data through the URL request, connects the names of each field in the form and its content as a pair of strings, and places them in the program pointed to by the action attribute. After entering the URL, such as http://www.mdm.com/test.asp?name=asd&password=sad, the data will be displayed directly on the URL, just like the user clicks a link; the Post method uses the HTTP post mechanism to convert the form The name of each field and its content are placed in the HTML header (header) and are sent to the server for processing by the program pointed to by the action attribute. The program will read the form data through the standard input (stdin) method and add it to the server. Processing

2. The Get method requires using Request.QueryString to obtain the value of the variable; while the Post method uses Request.Form to access the submitted content

3. The amount of data transmitted by the Get method is very small , generally limited to about 2 KB, but the execution efficiency is better than the Post method; the amount of data transferred by the Post method is relatively large, it is waiting for the server to read the data, but there is also a byte limit, this is to avoid using the server A large amount of data is used to conduct malicious attacks. According to Microsoft, Microsoft has a limit on the maximum data that can be received using Request.Form(). It is 80 KB bytes in IIS 4 and 100 KB bytes in IIS 5

Suggestion: Unless you are sure that the data you submit can be submitted at once, please try to use the Post method

4. Submitting data through the Get method will cause security issues, such as a login page, submitting data through the Get method , the username and password will appear on the URL. If the page can be cached or others can access the customer's machine, the user's account and password can be obtained from the history record, so it is recommended to use the Post method for form submission; the Post method is submitted A common problem with the form page is that when the page is refreshed, a dialog box will pop up

Recommendation: For security reasons, it is recommended to use Post to submit data

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
浅析php中POST方法带参数跳转页面浅析php中POST方法带参数跳转页面Mar 23, 2023 am 09:15 AM

对于PHP开发者来说,使用POST带参数跳转页面是一项基本技能。POST是HTTP中一种发送数据的方法,它可以通过HTTP请求向服务器提交数据,跳转页面则是在服务器端进行页面的处理和跳转。在实际开发中,我们经常需要使用POST带参数来跳转页面,以达到一定的功能目的。

python requests post如何使用python requests post如何使用Apr 29, 2023 pm 04:52 PM

python模拟浏览器发送post请求importrequests格式request.postrequest.post(url,data,json,kwargs)#post请求格式request.get(url,params,kwargs)#对比get请求发送post请求传参分为表单(x-www-form-urlencoded)json(application/json)data参数支持字典格式和字符串格式,字典格式用json.dumps()方法把data转换为合法的json格式字符串次方法需要

php怎么判断post有没有提交php怎么判断post有没有提交Mar 21, 2023 pm 07:12 PM

PHP是一种广泛使用的服务器端脚本语言,它可以用于创建交互式和动态的Web应用程序。在开发PHP应用时,我们通常需要通过表单将用户输入数据提交给服务器端处理。然而,有时候我们需要在PHP中判断是否有表单数据被提交,这篇文章将介绍如何进行这样的判断。

java如何发起http请求调用post与get接口java如何发起http请求调用post与get接口May 16, 2023 pm 07:53 PM

一、java调用post接口1、使用URLConnection或者HttpURLConnectionjava自带的,无需下载其他jar包URLConnection方式调用,如果接口响应码被服务端修改则无法接收到返回报文,只能当响应码正确时才能接收到返回publicstaticStringsendPost(Stringurl,Stringparam){OutputStreamWriterout=null;BufferedReaderin=null;StringBuilderresult=newSt

NGINX反向代理对HTML页面的POST请求返回405怎么解决NGINX反向代理对HTML页面的POST请求返回405怎么解决May 22, 2023 pm 07:49 PM

实现如下:server{listen80;listen443ssl;server_namenirvana.test-a.gogen;ssl_certificate/etc/nginx/ssl/nirvana.test-a.gogen.crt;ssl_certificate_key/etc/nginx/ssl/nirvana.test-a.gogen.key;proxy_connect_timeout600;proxy_read_timeout600;proxy_send_timeout600;c

PHP代码示例:如何用POST方式传参并实现页面跳转PHP代码示例:如何用POST方式传参并实现页面跳转Mar 07, 2024 pm 01:45 PM

标题:PHP代码示例:使用POST方式传参并实现页面跳转的方法在Web开发中,经常会涉及到如何通过POST方式传递参数,并在服务器端进行处理后实现页面跳转的需求。PHP作为一种流行的服务器端脚本语言,提供了丰富的函数和语法来实现这一目的。下面将通过一个实际的示例来介绍如何使用PHP来实现这一功能。首先,我们需要准备两个页面,一个用来接收POST请求并处理参数

PHP跳转页面并携带POST数据的实现方法PHP跳转页面并携带POST数据的实现方法Mar 22, 2024 am 10:42 AM

PHP是一种广泛应用于网站开发的编程语言,而页面跳转并携带POST数据是在网站开发中常见的需求。本文将介绍如何实现PHP页面跳转并携带POST数据,包括具体的代码示例。在PHP中,页面跳转一般通过header函数实现。如果需要在跳转过程中携带POST数据,可以通过以下步骤完成:首先,创建一个包含表单的页面,用户在该页面填写信息并点击提交按钮。在表单的acti

深入解析jQuery中get方法和post方法的异同深入解析jQuery中get方法和post方法的异同Feb 24, 2024 pm 12:15 PM

jQuery中get和post是两种常用的ajax请求方法,用于向服务器发送请求并获取数据。它们在使用方式和一些特性上有一些不同,接下来我们将详细解释它们的异同点,并附上具体的代码示例。get和post的相同点:都是用于发送ajax请求的方法,可以通过指定URL和数据参数来从服务器获取数据。都可以接受回调函数作为参数,用于处理服务器返回的数据或处理请求失败的

See all articles

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

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!