Posts by Cleber Azevedo • 31 points
2 posts
-
2
votes3
answers1211
viewsA: Data registration with Angularjs and PHP does not work
Check that no errors occurred in PHP at insertion time: example: if (mysqli_error($ins)) echo json_encode( array('status' => 1, 'msg' => 'Ocorreu um problema')); else echo json_encode(…
-
1
votes2
answers1724
viewsA: Change one combobox from another
do something like this: $('#Hotel').change(function() { var valorSelecionado = $(this).val(); $('#Acomodacao').prop('enabled', true); $('#Acomodacao').prop('selected', valorSelecionado); });…