I know differences and advantages of each command, my question is could I replace POST requests with GET everywhere? And which these commands calls by default while sending request from html form?
I know differences and advantages of each command, my question is could I replace
Share
No (and it would be a terrible idea to try).
Things that a form can do with POST that you can’t do with GET include:
There are other things that would simply be stupid to do with GET.
From http://www.w3.org/TR/html5/forms.html#attr-fs-method :