+ 1
Where can a form be submitted
<form
2 Réponses
+ 1
Where you want to submit it. Use form attribute 'action' to submit the form at a particular location and use attribute 'method' = POST, so that you can securely submit your form.
For example-
<form action= "index.html" method="POST" >//content here
</form>
0
Thanks bro