I have this code in PHP:
if($qryInsert == 1){
//echo "Evento criado com sucesso!";
echo json_encode( array('status' => 1, 'msg' => 'Evento criado com sucesso!'));
}else{
//echo "Erro ao criar evento";
echo json_encode( array('status' => 0, 'msg' => 'Erro ao criar evento'));
}
In my JS, it looks like this:
$.ajax({
url: 'php/evento.php',
type: 'POST',
dataType: 'json',
data: dataString,
success: function(data) {
if (data.status === '1') {
$("#msg").val(data.status);
$("#msg").show();
}
}
});
My html ...
<div id="msg"></div>
I think the error is in JS, but where?