Aryan PrajapatKnowledge Contributor
What is the difference between the GET and POST methods in php?
What is the difference between the GET and POST methods in php?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
The encoded user information attached to the page request is sent using the GET method. The? character separates the page from the encoded content.
For instance —
http://www.test.com/index.htm?name1=value1&name2=value2
The POST method uses HTTP headers to send data. The data is encoded as specified for the GET method and stored in the QUERY STRING header.