+ 2
When we use get & post attributes in HTML ?
write in comment
2 Réponses
+ 19
<form action "/send.php method = "GET> </form>
GET = You can see data inserted in the input text... in your URL bar.
<form action "/send.php method = "POST"> </form>
POST = Your data are hidden, and you can't see them in the URL bar, more secure for sensitive informations.
+ 4
that question keep repeating when I play html 😷😷