GET does not have a body ( all the data has to be send in the URL)
POST has a body which contains the data in URL-encoded format.

GET appends the form variables string to URL using (?)
POST send the form string data as request body (check HTTP protocol spec)

its easy to test web application if you only use GET.
POST does not expose any data in the URL hence it is clean and relatively
safer

-Paul

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to