What is the difference between GET and POST method?

Whenever we fill any form on the internet we can use one from two methods to send data on the server computer, that method can be either GET or POST. When we use the GET method all information is displayed on the address bar. If can be sent up to 1024 of data using GET method so it is good to use only when we are working with small scale applications and data is not that much sensitive. If we talk about the POST method, No information will be displayed on the address bar and we can send up to 2 MB of data using the POST method. This limit can also extend further if required. PHP includes many