0
Get and Post in HTML
i understand the difference between <form action="url" method="GET"> and <form action="url" method="POST"> what i dont understand is where they went here <form> <input type="text" name="username" /><br /> <input type="password" name="password" /> </form> i am new to coding so please dot tell me to look at the lessons.
4 Answers
+ 5
methods : GET, POST, DELETE, PUT, OPTIONS, HEADâŠâŠ
+ 5
All methods work but they serve different purposesâŠâŠ
+ 1
If you dont specify the method, GET will be used.
0
that doesn't tell me why the post method worked in the second one