Difference between get and post method in PHP
GET Method | POST Method |
GET Method is used to transfer data from one page to another through URL. | POST Method is used to transfer data from one page to another through Form. |
GET Method is not secure. | POST Method is more secure. |
The information transfer through GET Method is visible to all. | The information transfer through POST Method is not visible to all. |
In GET Method, limited amount of data can be transferred. | In POST Method, unlimited amount of data can be transferred. |