Posts by Ismael SIlva • 248 points
11 posts
-
1
votes0
answers109
viewsQ: Difference between Insert all and Insert with select dual on Oracle
Hello, good morning! I have some questions about how best to include mass data in an Oracle database so that the database does not suffer so much. Doing some research I identified two methods to do…
-
0
votes1
answer47
viewsA: Display in a Messagedialog the contents of List<String> message = new Arraylist<String>();
When you perform: return mensagem.toString(); You return a string from the Array you created, to print the messages you will need to change its function to: public String getMsg() { String message =…
-
1
votes1
answer125
viewsA: Doubt between relationships with Laravel and Eloquent
You’ll have to change that line: $obj = User::with('grupos', 'relatorios')->get(); for that: $obj = User::with('grupos.relatorios')->get(); Whereas in the model grupos has to have the…
-
1
votes2
answers121
viewsA: How to return all content from a JSON?
Good afternoon! See if this way helps you <?php $path = null; /** Condicional para verificar se a variável $_GET['path'] existe, caso exista é inserido o valor nele **/ if(isset($_GET['path'])) {…
phpanswered Ismael SIlva 248 -
5
votes2
answers68
viewsQ: Help with flexbox
I’m struggling to do this with flexbox. With float was very easy as it organizes easily. .slider > div > img { width: 100%; height: 100%; } .slider > div.item-1 { width: 60%; height: 500px;…
-
2
votes1
answer929
viewsA: mysql Workbench error
Good afternoon, The problem is that your script is in version 8 and your database is in a lower version than the script see at this link You can see the database modeling version in Model > Model…
-
0
votes3
answers131
viewsA: Make a request on the server with 2 parameters
Test there to check if the request is going with the two parameters. "php/select-coach.php? value=1&game=3" function criarReq() { try{ return new XMLHttpRequest(); } catch (e) { try { return new…
-
1
votes3
answers131
viewsA: Make a request on the server with 2 parameters
Good morning, From what I understand it is only to put . value at the end of Document.getElementById('game') var jogo = document.getElementById('jogo').value; You are trying to send the input game…
-
4
votes1
answer6293
viewsA: Update a single information in Laravel
You don’t need to call the table name again. teste::where('nome', $nome)->update(['verificado' => 1]); See more information in the documentation…
-
1
votes2
answers724
viewsA: Apply the Blur effect to the floating box background
Good night! I didn’t quite understand your question, but from what I’m looking at, you’re applying the Blur filter to the div that’s above the content, and blurring all the content, so it’s not…
-
1
votes2
answers1283
viewsA: User Registration in Laravel
Just to complement the previous answer! You can use the return method as follows. Creating a user table template, using the Eloquent feature and then calling it in your Controller: return…