Introduction

Design as a process involves
  • Understanding
  • observation
  • imagination
  • analysis
  • revision
  • visualization
providing a lucid explanation in your own words helps you reach Understanding capture and understand the study of growth process nn

HTTP Request Methods
  • GET - Requests data from a specified resource
  • POST - Submits data to be processed to a specified resource

The GET Method

When you use get, you send a query string in the URL (exposing your names/values:
/test/demo_form.asp?name1=value1&name2=value2
From w3schools:
  • GET requests can be cached
  • GET requests remain in the browser history
  • GET requests can be bookmarked
  • GET requests have length restrictions
  • GET requests should be used only to retrieve data