Diffrence Between Get and Post
This Used to send info to client end to server end.
Get.
- get method to produce a long string which append in server log,in browser location box.
- get method is restrict to send only 1024 char only.
- get method provides $_GET associative array to access all sent info.
- example--http://namaskarstore.com/products-list.php?subid=&catid=8&bid=&sizes=&range=&colors=red
Post.
- Post method does not have restriction for data size.
- post method used for send ASCII as well as binary data.
- data send by post goes through http header so security depends on http protocol.
- Post provides $_POST associative array to access all sent info.