How to put Alert in PHP?

Asked

Viewed 9,184 times

-4

CODE:

        //Comando SQL Upadte para Atualizar os dados
        $sql = "UPDATE clientes set nome='$nome',cpf='$cpf',email='$email',setor='$setor',rua='$rua',numero='$numero',telefone='$telefone' WHERE id='$codigo'";
         //Testa o comando SQL
         mysql_query($sql) or die("Não foi possivel exercutar o comando Sql");
         //Mensagem de Sucesso na operação
         echo "O arquivo foi Alterado com sucesso";
         //Fechar a conexão
         mysql_close($conn);
    }
    else 
    {
        echo "não houve conexão com o banco";
    }
    ?>
</body>

3 answers

4

I think that solves:

echo "<script>alert('Mensagem');</script>";

3

It is not very cool to make alerts like this, it would be more interesting to put this file to be accessed via ajax request.

The Html form sends via ajax the information to be used in the query, and the php file returns a json, as a return to HTML.

By default there is no way to give an Alert in php. Of the ways previously covered work, but I do not find it interesting.

3

It is thus, being two languages that work on different sides, this is the only direct way...

   //Comando SQL Upadte para Atualizar os dados
     $sql = "UPDATE clientes set nome='$nome',cpf='$cpf',email='$email',setor='$setor',rua='$rua',numero='$numero',telefone='$telefone' WHERE id='$codigo'";
     //Testa o comando SQL
     mysql_query($sql) or die("Não foi possivel exercutar o comando Sql");
     //Mensagem de Sucesso na operação
     echo "O arquivo foi Alterado com sucesso";
     //Fechar a conexão
     mysql_close($conn);
}
else 
{
    echo "<script>alert('não houve conexão com o banco');</script>";
}
?>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.