1.

What is the difference between GET & POST ?

Answer»

These both methods are based on the HTTP method.

GETPOST
The GET method transfers data in the FORM of QUERY_STRING. Using GET it provides a $_GET associative ARRAY to access dataThe post method TRANSFER form data by HTTP Headers. This POST method does not have any RESTRICTIONS on data size to be sent. With POST method data can travel within the form of ASCII as well as BINARY data. Using POST, it provides a $_POST associative array to access data.


Discussion

No Comment Found