Answers for "difference between GET, POST and REQUEST methods?"

PHP
6

difference between GET, POST and REQUEST methods?

GET and POST are used to send information from client browser to web server.
GET the information is send via GET method in name/value pair and is URL encoded.
The default GET has a limit of 512 characters.
The POST method transfers the information via HTTP Headers. 
The POST method does not have any restriction in data size to be sent.
POST is used for sending data securely and ASCII and binary type's data.
The $_REQUEST contains the content of both $_GET, $_POST and $_COOKIE.
Posted by: Guest on December-23-2020

Code answers related to "difference between GET, POST and REQUEST methods?"

Browse Popular Code Answers by Language