Sending an HTML request
It is not just possible to display HTML information, but it is possible to get input from the web page user, It is done using HTML forms. I hope that I will explain all of the HTML form elements later.
For now I will mention that is possible to send an HTML form data using two different methods. It possible to use either GET or POST request.
GET request will make data available in the URL.
POST request will make a separate call to the web server that is containing data of the form, and such data will not be visible in the URL.
Data such as passwords need to be submitted via POST request, so it will not be visible in the URL.
Comments
Post a Comment