Hi when I use something like:
Is GET fine or should I always use POST? I am asking, because everyone tells me something else regarding the two and I get the feeling POST is a lot more robust, but leaves me to think it's slower than GET?
Side Note: I am just referring to AJAX usages as I always use POST for user input data.
Code:
xhttp.open("GET", "my_file.text", true);
xhttp.send();
Is GET fine or should I always use POST? I am asking, because everyone tells me something else regarding the two and I get the feeling POST is a lot more robust, but leaves me to think it's slower than GET?
Side Note: I am just referring to AJAX usages as I always use POST for user input data.