In short, this is when you, in this case, make requests to communicate with server-side scripts using HTTP requests.
This server-side script in your case is PHP code.
The advantage of using is that through this request you do not need to reload your page.
There are several ways to do it, but one of the most common ways is to use jquery, according to the code below:
$.ajax({
type: 'POST', // Aqui é o método HTTP
dataType: 'json', // Aqui é o formato do retorno do script php logo abaixo
url: 'salvar.php', // Este é o seu script PHP do lado do servidor
data: dados, // Aqui são os dados que você vai enviar pelo metodo notificado acima, no caso POST, para o seu script salvar.php
success: function(response) { // aqui é o tratamento do retorno do script salvar.php. O success indica que o script retornou o código 200, ou seja, foi encontrado e executado sem erros
location.reload();
}
});
Thanks! On an administrators page it is good to make use of this type of method?
– user125090
It depends on the case , friend, there is no fixed rule for this no. But a poorly done ajax causes slowness. Hugs
– Daniel Mendes