php in what is advatages of get methods and how you can use get methods.
We all are familiar with disadvantages of GET method when compared to POST method. However, there is a real advantage of using GET when you are creating a link that access CGI scripts. It is easy to retrieve as the data is sent as name value pair at the end of the URL. These are then passed to the query string collection, and CGI script can retrieve these values directly. When using POST method, the name value pairs are sent in data file to the standard input in bytes. CGI scripts gets name value pairs from there. The main disadvantage of GET is that there is a limit on data that can be passed.
The get method is a SEO friendly method. It makes easier to set up for small, non-secure data. The variables get passed through the URL string, so you don't have to try to attach it to headers or worry about forms.
Request of get method can be bookmarked, can be cached, are faster and have known consequences, so visiting them multiple times is not a problem.
You can find an example from the given link:
Ads