Example & Tutorial understanding programming in easy ways.

Differentiate between GET and POST?.

 When you use GET, the entire form submission gets encapsulated in one URL. The query length is limited to 260 characters, not secure, faster, quick 
and easy. 
- When you use POST your name/value pairs inside the body of the HTTP request, which makes a cleaner URL. It imposes no size limitations on the 
form's output. It is used to send a large amount of data to the server to be processed. It is comparatively more versatile and secure.

Read More →