0

Where we use GET method and POST method

GET & POST method

31st May 2017, 3:25 PM
Karthik Swarnkar
Karthik Swarnkar - avatar
2 Respostas
0
When you use GET, the form data will be visible in the page address. Use POST if the form is updating data, or includes sensitive information (passwords). POST offers better security because the submitted data is not visible in the page address. so <form action="url" method="POST"> or <form action="url" method="GET">
31st May 2017, 3:35 PM
Loai Hazima
Loai Hazima - avatar
0
In simple terms: Post should be used when you need your data invisible to the public e.g password, While Get is the opposite. e.g bookmarks
31st May 2017, 3:54 PM
Victor Ajor
Victor Ajor - avatar