Posts by João Carlos Junior • 76 points
12 posts
-
0
votes2
answers1511
viewsA: Problems using Mail Freight Webservice ERROR[-888]
See the documentation on https://www.correios.com.br/a-a-z/pdf/calculador-remoto-de-precos-e-prazos/manual-de-implementacao-do-calculo-remoto-de-precos-e-prazos/view For each type of shipment there…
-
0
votes1
answer91
viewsA: How to delete an existing repository with Git?
Just delete the . git folder inside the /site and use the command git init again. Remember that depending on your environment the folder may not appear as it is hidden.
gitanswered João Carlos Junior 76 -
1
votes3
answers412
viewsA: Card misalignment in bootstrap 4’s smaller resolution size
I believe this image was taken in mobile, the error is exactly the margin added with the class mr-3, as already quoted. But an alternative is to use the bootstrap 4 responsiveness api. Adding mr-3…
-
0
votes2
answers790
viewsA: Error in the React-Native run-android command
Was JDE installed too? Follow the steps of setting up the rocketseat development environment as already mentioned... But I advise you not to use the React-Native-cli, it was a solution to help…
react-nativeanswered João Carlos Junior 76 -
0
votes1
answer63
viewsA: Show specific dates that are in the Database in Bootstrap datapicker
There are two possible problems, probably the return of $diasValidos = $this->db->get_where('school_days')->result_array() is not coming with an array of dates, and if you are searching for…
-
0
votes1
answer155
viewsA: Grab Mysql database time
As explained above only use mysql TIME() function Example.: SELECT *, TIME(horario) AS horario FROM Programacao where horario >= '$gh_data' order by horario Remembering that the name of the…
-
1
votes2
answers874
viewsA: How to pass an object inside a props?
The error is in the "object" Music, in fact you have not created an object, but rather a function that is not returning anything. The right thing would be: function music (banda, url, musica) {…
-
0
votes2
answers3544
viewsA: SQLSTATE[HY000]: General error: 1364 Field 'gender' doesn’t have a default value
Eloquent’s create() method receives an array with the values to be entered in massassign mode. If a property is not contained in the $fillable array of the entity in question, this value is thrown…
-
1
votes1
answer105
viewsA: How to change an attribute of a select without option value?
You can select the option that contains the data-Uf equal to the answer and make it Selected. Try: $("#estado option[data-uf="+resposta.uf+"]").attr("selected", true);
-
0
votes1
answer36
viewsA: How to pass 2 parameters through a link with html and php
You can send as many parameters as you want by separating them by &. <a href="CarrinhoPT-BR.php?acao=add&id=<?php echo $rows_cursos['idDestaque']; ?>&idusuario=999&mais…
-
0
votes2
answers35
viewsA: Set the first page to be loaded by the browser
If you just want to load the content or run some script that is in themes/original/index.php, use include_once('themes/original/index.php); Follows documentation of the method:…
-
0
votes3
answers303
viewsA: How do I make the Alert() method in JS appear only 1 time when the user logs into the application?
Following the question of the title and considering the explanation, I understood that these messages are viewed only once, so: Create an Ajax request to your backend by checking that the message…