Posts by Rodrigo Gabriel • 44 points
8 posts
-
-1
votes1
answer58
viewsQ: How to Insert Multiple Items using React-Native-sqlite-Storage
I was developing an application using the React-Native-sqlite-Storage but I came across a very strange problem, time my code works and time does not, I can not understand, to try to investigate I…
-
0
votes1
answer33
viewsA: Create a new array from row 2 of the array
tenta isso: Array ( [Student ID] => 0 [Student info] => McLol CRN:Not Given Subject:MAT Course:2222 Section:Not Given Desc:Research [Total Correct Responses] => ) $new_array = explode("…
-
0
votes1
answer70
viewsA: I can’t compare dates
public function getDias($dia,$hralmoco=12,$intervalo=1){ $dia = date("Y-m-d",strtotime($dia)); $sql=$this->conn->query("SELECT * FROM agendamento WHERE dia = '$dia'"); $horaBD =…
-
0
votes2
answers219
viewsA: How do I make some command to go from one option panel to another in python
You can do something like this: dinheiro = 10 a = int(input("digite sua opcao aqui: "))# nessa linha voce captura a opcaoo do usuario garante que a variavel sera do tipo int e exibe na tela o texto…
pythonanswered Rodrigo Gabriel 44 -
0
votes1
answer70
viewsQ: I can’t compare dates
Can someone tell me what’s going on in this code? The first querie works but it does not enter the condition within the for. The Second works and behaves normally, no problem with that. The case is…
-
1
votes1
answer126
viewsA: Back to top button is not overwriting the footer
I believe this link helps you: https://www.w3schools.com/cssref/pr_pos_z-index.asp and that example taken also from the above site help you to better understand, I suggest you change the value of…
-
2
votes1
answer109
viewsQ: how to concatenate an object into asynchronous function?
Hello I am developing a site to train a little js, but I came across the following situation: I have a javascript object that I created to facilitate the Ajax queries, but when I am making the…
-
2
votes2
answers3881
viewsQ: How do I return a Promise value in Javascript?
Well I’m facing the following problem, I’m contributing to a Mozilla extension, but most browser Apis use Preses to do things, only the problem is that I don’t know much. So I would really like to…