View Single Post
  #1  
Old 07-01-2008, 08:13 PM
BSIT07-01's Avatar
BSIT07-01 BSIT07-01 is offline
Addicted to Computer


 
Join Date: Sep 2007
Location: ------------
Age: 36
Posts: 1,309
Contact Number: ---------------
Program / Discipline: BSIT
Class Roll Number: 07-01
BSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant futureBSIT07-01 has a brilliant future
Default Get and Post Method (on friend Request)

Get
  • This is default method.
  • This is not secure method,because the input is appended to the url specified by the action attribute.
  • By this method limited data can be passed by the server.
  • This cause problem with foriegn langauges.
  • This is easy to deal with and gives best performance.
  • When Information is attached to the url then some symbols are added which have specific meanings..
A: %nn ---> for special characters,nn for hexadecimal ASCII code for characters.
B: & ---> To seperate form field
C: + ---> To replace space.
D: ? ---> To seperate the URL from form information.
-----------------------------------
POST
  • This method transfer data using HTTP post transaction.
  • This approach is more secure.
  • Is normally used in conditions when large amount of data is passed,as this imposes no data size limitation
  • Sends all data/input of form as data stream immediatly after the requested URL.

Reply With Quote