Posts by Neuber Oliveira • 2,485 points
106 posts
-
2
votes1
answer2529
viewsA: Delay/delay function for opening a div
Actually Voce needs exactly the setTimeout, the one who creates a loop is called setInterval(), that as the name already says will execute the code every X time, going back to your case would look…
-
3
votes2
answers171
viewsA: PDO error with variable in LIMIT
This error means that Voce did not pass the values to all markers. $sql2 = $pdo->prepare('SELECT * FROM quiz_pergunta WHERE idquiz = :idQuiz ORDER BY id ASC LIMIT 0, :perguntaQuiz'); The markers…
-
-1
votes2
answers721
viewsA: Save $Scope from page with Angularjs
There are several ways to do this, particularly I prefer to use services without a little code gets a little complicated help more. Depending on the situation you can put all the logic within the…
-
4
votes5
answers7270
viewsA: What is the difference between a "branch" and a "tag"?
Just a complement to everything that has already been said, there are 2 types of tag: Light-Weight tags Which, as already stated, are like symbolic links, just point to a commit. As for the space in…
-
1
votes1
answer488
viewsA: Saving several array at once
set_time_limit Usually this happens because of the php timeout, tries to set max Execution time to a higher value, or zero to disable and not stop until the script execution is finished.…
-
1
votes2
answers887
viewsA: Transmit information between screens in Ionic with Angular?
It will depend on how you get this, or you will get the data, but one thing I believe will use enough are services https://docs.angularjs.org/guide/services Service Using a Voce service you can…