When I send an Ajax to run the script from my PHP the only thing it returns is success if the script was executed successfully or error if the script did not run successfully. Question: How to capture response from PHP and return this response to the Ajax request for it to display or do what you want with it? Type:
jQuery code sending variables and doing POST
$.ajax({
type: "POST",
url: 'url_especifica',
data: {variaveis: variaveis},
success: function (result) {
// Como requisitar $resposta e mostrar ela aqui
}
error: function (result) {
// Como requisitar $resposta e mostrar ela aqui
}
});
PHP insert example
if($Count == 0){
$Insert = mysql_query("INSERT INTO tbl_usuarios
VALUES ('', '$nome', '$email', '$tipo', '$senha', '$ativado', NOW())");
}
PHP
if(usuario_inserido_com_sucesso) {
$resposta: "O usuário foi inserido com sucesso"; }
else {
$resposta: "O usuário não foi inserido com sucesso"; }