Posts by Victor W. Ramalho • 16 points
3 posts
-
0
votes1
answer27
viewsA: Jquery - Open all tabs
I didn’t test it, but I believe it works: <div class="titulo">Título</div> <div class="open"><i class="fas">a</i></div> <div class="open"><i…
-
0
votes2
answers48
viewsA: How do I print a specific JSON item in PHP?
Quick fix: <?php $retorno='{"status":200,"sucesso":true,"motivo":0,"mensagem":"saldo atual","dados":{"saldo":2.47}}'; $json=json_decode($retorno); var_dump($json); echo $json->dados->saldo;…
-
0
votes1
answer589
viewsA: How to leave dynamic graphics with Google Harts?
Let me give you an example of how I make this kind of population of Google Maps: Usually populate using a connection to the database, but it is possible to do this using an array and a foreach:…