Table of Contents
The difference between post and get in HTML submission methods (experiment)
1. The difference between post and get
2. Client code
3. Server code
4. Results
Home Web Front-end HTML Tutorial What is the difference between post and get submission methods in html?

What is the difference between post and get submission methods in html?

Jun 24, 2017 pm 02:09 PM
html post the difference submit Way

The difference between post and get in HTML submission methods (experiment)

1. The difference between post and get

Get submission, the submitted information is displayed in the address bar.
Post submission, the submitted information is not displayed in the address bar, but is displayed in the message body.

2. Client code

<!DOCTYPE html><html><head><title>Form.html</title><meta name="keywords" content="keyword1,keyword2,keyword3"><meta name="description" content="this is my page"><meta name="content-type" content="text/html; charset=GB2312"><!--<link rel="stylesheet" type="text/css" href="./styles.css?1.1.11">--></head><body><!--提交方式:get提交。地址栏:http://localhost:9891/?user=abc&psw=123&repsw=123&sex=nan&tech=java&tech=html&country=cnGET /?user=abc&psw=123&repsw=123&sex=nan&tech=java&tech=html&country=cn HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
Accept-Language: zh-cn,zu;q=0.5
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)
Host: localhost:9891
Connection: Keep-Alive


提交方式:POST地址栏:http://localhost:9891/POST / HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
Accept-Language: zh-cn,zu;q=0.5
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)
Host: localhost:9891
Content-Length: 68
Connection: Keep-Alive
Cache-Control: no-cacheuser=hahah&psw=8989&repsw=8989&sex=nv&tech=html&tech=css&country=usa
        
        
        GET提交和POST提交的区别?
        1,
        get提交,提交的信息都显示在地址栏中。
        post提交,提交的信息不显示地址栏中。
        
        2,
        get提交,对于敏感的数据信息不安全。
        post提交,对于敏感信息安全。
        
        3,
        get提交,对于大数据不行,因为地址栏存储体积有限。
        post提交,可以提交大体积数据。 
        
        4,
        get提交,将信息封装到了请求消息的请求行中。
        post提交,将信息封装到了请求体中。
        
        在服务端的一个区别。        如果出现将中文提交到tomcat服务器,服务器默认会用iso8859-1进行解码会出现乱码,
        通过iso8859-1进行编码,在用指定的中文码表解码。即可。
        这种方式对get提交和post提交都有效。 
        
        但是对于post提交方式提交的中文,还有另一种解决办法,就是直接使用服务端一个对象
        request对象的setCharacterEncoding方法直接设置指定的中文码表就可以将中文数据解析出来。
        这个方法只对请求体中的数据进行解码。 
        
        综上所述:表单提交,建议使用post。
        
        
        和服务端交互的三种方式:
        1,地址栏输入url地址。get
        2,超链接。 get3,表单。 get 和  post

        
        如果在客户端进行增强型的校验(只要有一个组件内容是错误,是无法继续提交的。只有全对才可以提交)
        问,服务端收到数据后,还需要校验吗?
        需要,为了安全性。
        为了信息安全,也为了客户端那边不要乱提交数据,客户端和服务端都需要做校验。
        
        如果服务端做了增强型的校验,客户端还需要校验吗?需要,因为要提高用户的上网体验效果,减轻服务器端的压力。        
        -->表单格式化<br><!-- action里面的http协议不能忘记 --><form action="http://localhost:9891" method="post"><!-- 
             cellpadding 属性规定单元边沿与其内容之间的空白。
             注释:请勿将该属性与 cellspacing 属性相混淆,cellspacing 属性规定的是单元之间的空间。
             从实用角度出发,最好不要规定 cellpadding,而是使用 CSS 来添加内边距。         --><table border="1" bordercolor="#00ffff" cellpadding=10 cellspacing=0width=400><!-- 由此可见,<th>和<td>标签都是用于表格单元格显示的。不同的是<th>在单元格中加粗显示。 --><tr><!-- 占两列 --><th colspan="2">注册表单</th></tr><tr><td>用户名称</td><td><input type="text" name="user" value=""><br /></td></tr><tr><td>输入密码</td><td><input type="password" name="pwd" /><br /></td></tr><tr><td>确认密码</td><td><input type="password" name="repwd" /><br /></td></tr><tr><td>选择性别</td><td><input type="radio" name="sex" value="nan" />男 <inputtype="radio" name="sex" value="nv" checked="checked" />女<br /></td></tr><tr><td>选择技术</td><td><input type="checkbox" name="tech" value="java" />JAVA <inputtype="checkbox" name="tech" value="html" />HTML <inputtype="checkbox" name="tech" value="css" />CSS <br /></td></tr><tr><td>选择国家</td><td><select name="country"><option value="none">--选择国家--</option><option value="usa">美国</option><option value="en">英国</option><!-- 默认选择中国 --><option value="cn" selected="selected">中国</option></select></td></tr><tr><th colspan="2"><input type="reset" value="清除数据" /> <inputtype="submit" value="提交数据" /></th></tr></table></form></body></html>
Copy after login

3. Server code

RegServer.java

 1 /** 2  * 
 3  */ 4 package cn.itcast.server; 5  6 import java.io.IOException; 7 import java.io.InputStream; 8 import java.io.PrintWriter; 9 import java.net.ServerSocket;10 import java.net.Socket;11 12 /**13  * @author Fry14  *15  */16 public class RegServer {17 18     /**19      * @param args20      * @throws Exception 
21      */22     public static void main(String[] args) throws Exception {23         24         ServerSocket ss = new ServerSocket(9891);//新建服务端端口25         26         Socket s = ss.accept();//端口监听27         //输出服务器主机地址 ans:0:0:0:0:0:0:0:128         System.out.println(s.getInetAddress().getHostAddress());29         InputStream in = s.getInputStream();//字节输入流,用来接收客户端消息30         byte[] buf = new byte[1024];//1024字节的缓存31         int len = in.read(buf);//将收到的消息读到buf中32         //输出接收到的页面消息 包括消息行  消息头  消息体33         System.out.println(new String(buf,0,len));34         //字符输出,用来存储发送给客户端的消息35         PrintWriter out = new PrintWriter(s.getOutputStream(),true);36         //客户端接收到的消息37         out.println("<font color=&#39;green&#39; size=&#39;7&#39;>注册成功</font>");38         //关闭端口39         s.close();40         ss.close();41     }42 43 }
Copy after login

4. Results

The above is the detailed content of What is the difference between post and get submission methods in html?. For more information, please follow other related articles on the PHP Chinese website!

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks 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)

Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Mar 04, 2025 pm 04:06 PM

Original title: Bittensor=AIBitcoin? Original author: S4mmyEth, Decentralized AI Research Original translation: zhouzhou, BlockBeats Editor's note: This article discusses Bittensor, a decentralized AI platform, hoping to break the monopoly of centralized AI companies through blockchain technology and promote an open and collaborative AI ecosystem. Bittensor adopts a subnet model that allows the emergence of different AI solutions and inspires innovation through TAO tokens. Although the AI ​​market is mature, Bittensor faces competitive risks and may be subject to other open source

Is there any difference between South Korean Bitcoin and domestic Bitcoin? Is there any difference between South Korean Bitcoin and domestic Bitcoin? Mar 05, 2025 pm 06:51 PM

The Bitcoin investment boom continues to heat up. As the world's first decentralized digital asset, Bitcoin has attracted much attention on its decentralization and global liquidity. Although China was once the largest market for Bitcoin, policy impacts have led to transaction restrictions. Today, South Korea has become one of the major Bitcoin markets in the world, causing investors to question the differences between it and its domestic Bitcoin. This article will conduct in-depth analysis of the differences between the Bitcoin markets of the two countries. Analysis of the differences between South Korea and China Bitcoin markets. The main differences between South Korea and China’s Bitcoin markets are reflected in prices, market supply and demand, exchange rates, regulatory supervision, market liquidity and trading platforms. Price difference: South Korea’s Bitcoin price is usually higher than China, and this phenomenon is called “Kimchi Premium.” For example, in late October 2024, the price of Bitcoin in South Korea was once

What exchange is Nexo? Is Nexo exchange safe? What exchange is Nexo? Is Nexo exchange safe? Mar 05, 2025 pm 07:39 PM

Nexo: Not only is it a cryptocurrency exchange, but also your digital financial manager. Nexo is not a traditional cryptocurrency exchange, but a financial platform that focuses more on cryptocurrency lending. It allows users to obtain loans in cryptocurrency as collateral and provides services to earn interest. While Nexo also offers cryptocurrency buying, selling and redemption capabilities, its core business is crypto lending. This article will explore the operating model and security of Nexo in depth to provide investors with a more comprehensive understanding. Nexo's operating model was founded in 2018 and is headquartered in Zug, Switzerland, and is a pioneer in the field of digital finance. It is different from other centralized exchanges and focuses more on providing comprehensive financial services. Users can buy, sell, trade cryptocurrencies without selling assets and

The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin Mar 19, 2025 pm 04:54 PM

The difference between Ethereum and Bitcoin is significant. Technically, Bitcoin uses PoW, and Ether has shifted from PoW to PoS. Trading speed is slow for Bitcoin and Ethereum is fast. In application scenarios, Bitcoin focuses on payment storage, while Ether supports smart contracts and DApps. In terms of issuance, the total amount of Bitcoin is 21 million, and there is no fixed total amount of Ether coins. Each security challenge is available. In terms of market value, Bitcoin ranks first, and the price fluctuations of both are large, but due to different characteristics, the price trend of Ethereum is unique.

Is Bitcoin speculation a stock speculation? Why? What are the differences between the two? Is Bitcoin speculation a stock speculation? Why? What are the differences between the two? Mar 05, 2025 pm 02:24 PM

Bitcoin: Digital gold or stock trading derivatives? In-depth analysis of the nature of its investment. Bitcoin, as an emerging investment method, has drastically fluctuated prices and has similarities with the stock market trading rules, which has triggered people's questions about its investment nature: Is Bitcoin speculation equivalent to stock speculation? This article will discuss in-depth from the aspects of definition, nature, issuance mechanism, etc., and unveil the mystery of Bitcoin investment. Bitcoin and Stocks: The essential difference between Bitcoin and Stocks is: Investing in Bitcoin is not the same as investing in stocks. Bitcoin is a decentralized digital currency that belongs to the category of digital assets or virtual assets. Its transactions are completely controlled by users and adopts a point-to-point (P2P) transmission model to form a decentralized payment system. This concept was proposed by Satoshi Nakamoto in 2009. Unlike traditional currencies,

What is the difference between bean bread and deepseek What is the difference between bean bread and deepseek Mar 12, 2025 pm 01:24 PM

The core difference between bean bun and DeepSeek is retrieval accuracy and complexity. 1. Doubao is based on keyword matching, simple and direct, with low cost, but low accuracy, and is only suitable for structured data; 2. DeepSeek is based on deep learning, can understand semantics, has high accuracy, but high cost, and is suitable for unstructured data. The final choice depends on the application scenario and resource limitations. If the accuracy requirements are not high, choose bean bags, and if you pursue high precision, choose DeepSeek.

Crypto investment mentality is very important! How to avoid unnecessary worries and make correct decisions? Crypto investment mentality is very important! How to avoid unnecessary worries and make correct decisions? Mar 05, 2025 pm 07:24 PM

Fear, uncertainty and doubt of crypto investment: How to make informed decisions? Many crypto investors face fears of “this is the last cycle”, as well as concerns about the duration of the bull market, coupled with pressure from others, which together lead to poor investment decisions. This article will explore how to overcome these challenges and make smarter investment choices. Potential risk: Distraction: Blindly chase hot spots and ignore the value of core assets. Pessimism and hesitation: Uncertainty leads to lack of confidence, inability to hold for a long time, and even exit from the market. Lack of belief: Lack of in-depth research on projects and cannot cope with market volatility. Lack of profit-making strategies: clearing positions early due to fear of pullbacks, missing potential returns. Coping strategies: 1. Focus on core areas:

Detailed introduction to Ouyi okex opening and closing time Detailed introduction to Ouyi okex opening and closing time Mar 18, 2025 pm 01:06 PM

The Ouyi OKEx digital asset trading platform is different from the traditional securities market. It is open for trading 24 hours a day, and users can conduct fiat currency trading, currency trading and contract trading at any time. However, the platform will announce in advance and temporarily adjust trading time or rules in case of system maintenance upgrades or special market events (such as extreme market conditions causing severe market fluctuations), such as suspending trading or modifying contract trading position opening rules. Therefore, it is recommended that users pay close attention to platform announcements and market trends, seize trading opportunities and do a good job in risk management. Only by understanding Ouyi OKEx trading time and rule adjustments can you be at ease in the digital currency market.

See all articles