Posts by Gabriel L • 88 points
2 posts
-
6
votes2
answers71
viewsA: Doubt about the case if switch
Change your code to: // inicia sessão session_start(); // ligação à base de dados include ('config.php'); // captura valores da compra $estado = $_REQUEST['estado_compra']; $id =…
-
1
votes1
answer539
viewsQ: Show success/error message after postback
I have the following functions on my page, when I call them via javascript, they work perfectly: function msgSucesso(msg) { toastr.success(msg); } function msgErro(msg) { toastr.error(msg); } Hence,…