+ 5
Attributes
post and get r whose attribute. ???
4 Antworten
+ 2
please answer in simple way.🙏
0
If you are talking about form submission on HTML, post and get are actually a method to send request-response between a client and server .
The simplest way to describe them is like:
GET - Requests data from a specified resource
POST - Submits data to be processed to a specified resource
with GET method, your data will be included on the URL, and it can be cached. On other hand, POST method make your data inside the POST request, so it will be more secure.
0
We use these attributes in opening tag of form
For example: <form method="GET">shorter chunk of nonsensitive information goes here</form> & <form method="POST">more secure submissions go here...</form>
0
Hello everyone. I am learning website creating in this app. after I have learned these information ,How can I use these information. do I need any applications to write code and create websites