Others

What is the difference between GET and P...

M

| Updated on March 20, 2019 | others

What is the difference between GET and POST in PHP?

2 Answers
648 views
G

Guest

@guest6271 | Posted on March 20, 2019

The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method and put into a header called QUERY_STRING. The POST method does not have any restriction on data size to be sent. The POST method can be used to send ASCII as well as binary data.
0 Comments
A

@ashusharma6275 | Posted on March 20, 2019

The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method and put into a header called QUERY_STRING.
0 Comments