Posts by Douglas Nunes • 43 points
3 posts
-
1
votes1
answer32
viewsQ: Error #1111 - mysql
use BDCep; select MAX(count(endereco_completo)), bairro from tend_endereco inner join tend_bairro on tend_bairro.id_bairro = tend_endereco.id_bairro where tend_bairro.id_cidade = 109 GROUP by bairro…
mysqlasked Douglas Nunes 43 -
0
votes1
answer33
viewsQ: Problems calling a Javascript function in an html buttom!
I created two functions in js for two buttons in HTML, one reads the name of the visitors of the site and the other shows the name of the visitors who already read, as follows below: var nomearray=…
-
0
votes3
answers104
viewsQ: Javascript functions sharing information?
I wonder if it is possible for two Javascript functions to share information that is in one of them. Example: function a(){ var nome = prompt("digite seu nome") } function b(){ alert(nome) }…
javascriptasked Douglas Nunes 43