Posts by Thiago Marcato • 1 point
3 posts
-
0
votes1
answer92
viewsA: Create select box with dynamic data
The simplest way would be: <select id='TAG_OPTION' class='form-control'> @foreach ($tags as $tag) <option value="{{ $tag->ID_TAG }}">{{ $tag->NOME_TAG }}</option> @endforeach…
-
0
votes6
answers10935
viewsA: How to receive a JSON object from an external url/domain?
testarApi(); function testarApi(){ var token ="crie seu token" var sorteio = ""; $.ajax( { url: "https://lotorapido1.websiteseguro.com/lotofacil?token="+token+"&sorteio="+sorteio, method:'get',…
-
-1
votes1
answer219
viewsA: Easy lock with error in PHP printing
I did something similar, I get more combinations than necessary, besides I keep generating combinations if it doesn’t hit 14 points, then I delete from the array the combinations that give less…