HTTP Full Form

What is the full form of HTTP?

The full form of HTTP is Hyper Text Transfer Protocol. HTTP protocol remains one of the main methods of communication on the internet today and help to allow users to exchange data on the world wide web.

Example of HTTP:

When a URL is entered into the browser ,the browser sends an HTTP command to the web server directing it to search and transmit the request web page.

Types of HTTP:

The two most common HTTP methods are : GET , POST, PUT,PATCH And DELETE.

The brief description about the part of HTTP:

GET:
GET request is used to read data from a web server. GET returns an HTTPS status code of 200 (OK) if the Data is successfully read from the server.

POST:
POST is a request to send data (file, form,data and many more) to the server . If the creation is successfully, it returns an HTTP status code 201.

PUT:
A PUT request is used to modify the data on the server. It replace the entire data at a particular location .

PATCH:
PATCH is similar to PUT request, the main difference is, it modifies a part of the data. It will only replace the content that you want to update.

DELETE:
DELETE request us uses to delte the data on the server at a specified location.

Features of HTTP:

    1. HTTP is connectionless
    2. HTTP is media independent
    3. HTTP is stateless.

Mainly used in HTTP:

HTTP is a request response protocol , HTTP gives users a way to interact with web resources such as HTML files by transmitting messages between clients and services.

What the purpose of HTML?

HTTP to create the first interactive , text based web browser: the original World Wide Web.

Leave a Comment