POST (HTTP) is an HTTP method that sends data to a server. For example, you use the POST method to submit form data. A script or program usually processes POST requests on the server, which sends a response back to the client.
You can, among others, make a POST request with JavaScript, which you can use to send data to the server without reloading the page.