GET和POST请求格式

1、连接主机
2、发送请求
(1)GET
    GET /0626/index.php HTTP/1.1
    Host: localhost
    
    
(2)POST
    POST /0602/haha.php HTTP/1.1
    Host: localhost
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 5
    
    hello


你可能感兴趣的:(GET和POST请求格式)