Posts by Marcos Pereira • 65 points
10 posts
-
0
votes3
answers536
viewsQ: Why can’t I pass summernote name="" via ajax
After some tests I saw that summernote does not pass the name="" via ajax request, someone can tell me why? $(document).ready(function(){ $(document).on('click', '#submit_btn', function(){ var…
-
0
votes2
answers75
viewsQ: I wonder if I’m doing this ajax the right way?
Guys, I have this ajax and a page called test.php that gets a value, I wonder if my ajax is right and this value is being picked correct inside the test.php page <script>…
-
1
votes2
answers97
viewsQ: I would like to know how to pass the value of a Radius via post with ajax or jquery
I needed help to pass any value of one of these inputs via Ajax or jQuery: <input type="radio" id="valorum" name="valor" value="38,70" ></br> <input type="radio" id="valordois"…
-
0
votes0
answers40
viewsQ: Doubt about updating the google maps API map!
Good afternoon guys, I have a question here. I wanted to know how to update the map of the API google maps, because the google map is updated and tals and appears all the neighborhood of my city,…
google-mapsasked Marcos Pereira 65 -
-3
votes1
answer1134
viewsQ: UPDATE in two tables
I’d like to make one update using a Inner Join. I tried this: UPDATE m SET m.rua = 'Rua Major Gote', b.desc_bairro = 'Centro', m.id_tipo = '', m.numero = '652', m.CEP = '38700001', m.cidade = 'Patos…
-
0
votes1
answer36
viewsQ: I would like a user to register a single limit of markers on the map
Good morning guys, I would like to know, if I have how to determine a maximum limit of markers registrations there is a user depending on their level of access in the database. Example: CREATE TABLE…
-
2
votes1
answer92
viewsQ: I have a geolocation code, but Chrome won’t give me permission to execute it
I would like to know, if I have to give some kind of permission, for the code to work in Chrome, because in mozila it can give me the location. Follow the code below` function…
-
1
votes2
answers7167
viewsQ: Error trying to delete with INNER JOIN in MYSQL
DELETE FROM `tb_users` INNER JOIN `tb_marker` ON tb_users.id_users` = `tb_marker.id_users` WHERE `tb_users.id_users` = 12 Follow below the error: You have an error in your SQL syntax; check the…
-
0
votes0
answers46
viewsQ: How to make two xml file calls in the same document
I wonder if you can generate two XML files in the same document. That’s the code I’ve got so far: downloadUrl("connect_xml.php", function (data) { var xml = data.responseXML; var markers =…
-
1
votes1
answer113
viewsQ: I’m using a mysql database where I store map markers
I’m using a mysql database where I store bookmarks from a map (in the table store the latitude and longitude of these bookmarks) my question is, I want to make a select by picking all bookmarks that…