Posts by Leandro Gonçalves de Oliveira • 69 points
4 posts
-
0
votes3
answers113
viewsA: Is it possible to update to 1 table using another condition?
It is also possible to use joins in upties and déletes. In your case, it would look like this: update ivr_contatos cont inner join ivr_campanha camp on cont.campanha = camp.id set cont.tentativas =…
-
2
votes2
answers361
viewsA: Show up a div with Hover
Good morning! There are many ways to do this. Since you don’t have Javascript experience, the easiest way to do it with CSS is with the pseudo-element ::before. In your case, it would look like…
-
-1
votes1
answer109
viewsA: HTML5 Canvas Arc() is not the correct size
Below is the correct script with some comments: // Vamos criar essa variável para evitar de sempre chamar document.getElementById var canvas = document.getElementById("showSize"); // Vamos trabalhar…
-
1
votes1
answer140
viewsA: {} at require() return
Good morning! I believe you are learning ES6 and Browserify, right? I think I understand your doubts, so let’s go: The dev/Names.js and dev/find.js files return functions using notation…