Diffrence Between Get and Post

This Used to send info to client end to server end.


Get.
  1. get method to produce a long string which append in server log,in browser location box.
  2. get method is restrict to send only 1024 char only.
  3. get method provides $_GET associative array to access all sent info.
  4. example--http://namaskarstore.com/products-list.php?subid=&catid=8&bid=&sizes=&range=&colors=red

Post.

  1. Post method does not have restriction for data size.
  2. post method used for send ASCII as well as binary data.
  3. data send by post goes through http header so security depends on http protocol.
  4. Post provides $_POST associative array to access all sent info. 

Popular posts from this blog

Simple Sign up design. Android.

Cart page design in android.

Set Date on jDateChooser and retrieve record from database.