+ 1

I didn't understand what is the different between get and post and what does they differ from type text,password

25th Dec 2016, 12:20 PM
‫عيسى عبد العزيز‬‎
‫عيسى عبد العزيز‬‎ - avatar
4 Réponses
+ 3
Post is used server side mostly, while Gets are use for searchs. You don't want to show a password in you url (or credit cards data), so you use post.
25th Dec 2016, 12:48 PM
Nahuel
Nahuel - avatar
+ 1
in html
25th Dec 2016, 12:21 PM
‫عيسى عبد العزيز‬‎
‫عيسى عبد العزيز‬‎ - avatar
+ 1
clear but does post differ from type password and get differ from type text
25th Dec 2016, 12:57 PM
‫عيسى عبد العزيز‬‎
‫عيسى عبد العزيز‬‎ - avatar
0
GET puts the information in the URL. It works like this: http://www.example.com?name=John&lastName=Doe Because the URL length is limited, you can only store up to 255 characters. POST is more secure and gets sent directly to the server as data. However, it is slower. It has no length limit.
26th Dec 2017, 2:10 PM
Lil Taco
Lil Taco - avatar