Posts by Samuel S-k • 27 points
3 posts
-
-2
votes1
answer1738
viewsQ: How to make an if with a higher and a lower value?
I was wondering if it’s possible to make a if or a for in PHP as follows: $valor = 7 if ( $valor se o valor for maior que > 5 menor que < 10) { //... Comando a ser executado ... }else if (se o…
-
0
votes1
answer123
viewsQ: LIKE with COUNT in PHP
I can’t understand what’s going wrong with the code: $query="SELECT aluno FROM bonesmirn2 WHERE data LIKE '%2018-09%' AS faltas GROUP BY aluno HAVING COUNT(aluno) > 0 ORDER BY COUNT(aluno) DESC";…
-
0
votes1
answer69
viewsQ: Pass data from a spinner to mysql
Hello, so my doubt is small and simple (but I can not solve kkk) just want to know how to pass the value that was selected in Spinner to the database by clicking a button, here my script…