What are various action method of url in html?
Answers
Answered by
0
The action attribute of the FORM element defines where to send the form data, and the method attribute specifies the HTTP method for sending the form data.
...
<form method="" action="">
Answered by
0
POST
The POST method sends the form data in the body of the HTTP request.
(A large amount of data can be sent.)
GET
The GET method sends the form data within the URL.
Hope this helps : )
Similar questions