An easy way to remember GET vs. POST
Get and Post are ways to pass user data on a form. The Get method passes the information via the URL. The Post method passes the information behind the scenes.
I sometimes get confused between the two. The following technique helps me to remember which one is which.
Get thru URL – GURL – GIRL. So the other one is Post via behind the scenes.