0
Can some one help me ?
To understand the <form action="url" Method ="Get"> <form action="url" Method ="Post"> I can not understand it
4 ответов
+ 1
saif ulrehman
It is simple just submit data and see the URL..
0
saif ulrehman
Get and Post do the same thing but in Get all parameters wil be display in URL but in Post not. So Post is secure more than Get
0
Bro can you understand this in easy way ? Plz
0
saif ulrehman the method specifies the way that data from a form is sent to the server. "Get" appends the data to the url, so that it is visible to the user, but "post" sends the data in a way the user can't see.
For that reason, "get" is used for forms on pages that has data that can be shared (ex: a filter form on a page that losts items for sale), so that you can insert values in the form, submit it, and then you can see the values you inserted in the form in the url too. After that, you can send someone else that url (with the values), and the page will view as if that users entered those values in the form themselves.