Posts by Thiago Tomais • 91 points
2 posts
-
4
votes3
answers45
viewsA: & Error inside mysql query
Fox, to avoid many interventions in your code, I recommend using the like function: $sql = mysqli_query($con,"SELECT * FROM semana WHERE Dias LIKE 'Segundas%Terças'");…
-
5
votes4
answers31463
viewsA: Onclick calling two functions at the same time Javascript
Vitor, you can call as many functions as you want by separating them by ; thus: <input type="button" onClick="javarscipt:alert('Funcao 1');alert('Funcao2')"> But it would be better to call a…