Home >Backend Development >PHP Tutorial >The difference between paragon partition manager POST and GET

The difference between paragon partition manager POST and GET

WBOY
WBOYOriginal
2016-07-29 08:41:211277browse

The differences between POST and GET are sorted out and listed here:

  • Security:

The data transmitted by GET is visible and has poor security.

  • Capacity of transmitted data:

GET transmission volume is limited by the maximum URL length, while the HTTP protocol does not specify the maximum URL length. It is generally limited by the relevant settings of the browser, server or operating system, and the maximum URL length of IE It is 2083, which is 2K+35. Firefox generally has no limit; when the browser does not limit it, the server, operating system, etc. will limit the maximum URL.

POST transmission volume is generally not limited.

  • Supported data types
There may be errors when sending Chinese, you need to use urlEncode() to encode and transmit
  • Collection

GET supports collection, POST does not support

  • Refresh

The browser will refresh when POST Prompt "Re-submit data".

  • History

GET data will be saved in the browser’s browsing history

The above has introduced the difference between paragon partition manager POST and GET, including the content of paragon partition manager. I hope it will be helpful to friends who are interested in PHP tutorials.

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