Advertisement

Advertisement banner

Advertisement

Advertisement banner

Advertisement

Advertisement banner
M
Mar 20, 2019•others

What is the difference between GET and POST in PHP?

2 Answers
React

G

Guest

@guest6271•Mar 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
React
A
@ashusharma6275•Mar 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
React