Posts by Fabio Sodre • 172 points
7 posts
-
0
votes1
answer28
viewsA: Openlayers 6: Example Box Selection Error
I found the solution. In the process of developing an application in Openlayers, unfortunately, there are problems when loading files locally (geojson, png etc.) due to the source desktop policy,…
openlayersanswered Fabio Sodre 172 -
-1
votes1
answer28
viewsQ: Openlayers 6: Example Box Selection Error
Following exactly the example of the openlayers site in: https://openlayers.org/en/latest/examples/box-selection.html?q=feature Locally, I have the following error: Uncaught SyntaxError: Unexpected…
openlayersasked Fabio Sodre 172 -
-2
votes1
answer108
viewsQ: Mysql variables do not work with php mysqli_fetch_array()
I set two Mysql widables to simplify one more Query that I want to deploy on my system. Using this command directly in SGBD, it works very well, however, when you want to use as a query string in my…
-
1
votes2
answers222
viewsQ: What are the character types generated by the password_hash() function?
The output I noticed after some data was encrypted by the function password_hash() is around alphanumeric values and some special characters like $ . and /. There are more special characters than…
-
0
votes2
answers837
viewsA: Check closed tab
Your script is ok! onbeforeunload will only be fired the moment the open window is about to load the internal page. If at this point you click the close button, the Alert will be triggered normally.…
javascriptanswered Fabio Sodre 172 -
2
votes2
answers71
viewsA: I can’t access my database
Your code with problem: $query .= "WHERE DataPartida = 2014-11-01 18:00:00"; Add single quotes or double quotes with exhaust: $query .= "WHERE DataPartida = '2014-11-01 18:00:00'"; ou $query .=…
-
2
votes2
answers1913
viewsA: Remove space between span and input
Instead of: <span class="input-group-addon" id="basic-addon1">Nome</span> <input type="text" name="name" class="input_name" /> Tag input next to the tag span as follows: <span…