3
When I send an Ajax to run my PHP script the only thing it returns is Success if the script was successfully executed or error if the script was not successfully executed. Question: How to capture PHP response and return this answer to the Ajax request for it to display or do with it? Type:
Code jQuery 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
}
});
Example of PHP Insert
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"; }
If you do
echo $resposta;
in PHP after theif/else
ajax will receive and can check withalert(result);
within the functionsuccess
. That’s what you’re looking for?– Sergio
I’ll try to see if it works that way to answer you if that’s what I’m looking for. I’ll get back to you.
– Marcos Vinicius