Posts by Harrison • 21 points
2 posts
-
2
votes1
answer573
viewsA: Do not reload page when giving Submit in modal
To cancel a form Ubmit you have to use the preventDefault in the event, for example: $('form').on('submit', function(e) { e.preventDefault(); // insira aqui sua chamada ajax })…
-
0
votes3
answers165
viewsA: Do not echo an empty Row IS NOT NULL
There are several ways to check this, depending on what returns from the database. To test, use the var_dump($row['lat']); to identify the type of return you have. After identifying, any of these…