Posts by Carlos Eduardo • 7 points
2 posts
-
-2
votes4
answers209
viewsA: count equal text from php database
Hello use $verificar=mysqli_query($link," SELECT COUNT(CASE WHEN classificacao = 'verde' THEN classificacao END) as vermelho, COUNT(CASE WHEN classificacao = 'vermelho' THEN classificacao END) as…
-
-4
votes1
answer48
viewsQ: Perform a PHP filter search on multiple tables
I need to do a search with filters for example SPECIALTY > CITY and then show search result follows my code: <?php if ($specialty != null && $city != null) { ?> <?php…