Posts by RamonVicente • 115 points
16 posts
-
1
votes1
answer79
viewsA: JSON accessing two databases
You will need to create another connection for the local part (since apparently you already made the web one), as you did in the variable $pdo. Then with PDO, you create a new query only instead of…
-
0
votes1
answer45
viewsA: Functions with ajax make loop for stop running
I solved the problem by identifying that in for there was the var variable serving as counter. When inserting the var worked as expected.
-
0
votes1
answer45
viewsQ: Functions with ajax make loop for stop running
I have a function that executes when I click a button. When clicking, the function should execute a loop for and if the value of that position of the for correspond to any of the ifs then it…
-
3
votes4
answers2042
viewsA: Select with 3 tables in SQL SERVER
Try to do so: select maq.maqNip, equi.*, marc.* from tblMaquina maq inner join tblEquipamento equi on equi.equId = maq.maqTipoEqui inner join tblMarca marc on marc.marcId = equi.equMarca…
-
1
votes1
answer63
viewsA: Save Text Field Record Disabled AJAX + PHP
Try to change the value $("#filtro_OAC") there in the Ajax to load it. val for $("#filtro_OAC_name"). val
-
-1
votes1
answer468
viewsA: OCI8 in PHP 7 on Linux
I’ve been with this same problem, only in windows. I was able to solve by changing the . dll of OCI. The PECL dll seems to be outdated or with wrong compilation so a user from here indicated me this…
-
1
votes1
answer1364
viewsQ: OCI8 in PHP 7.0 with Xampp 32bit
I’m using xampp in windows 7, PHP version is 7.0.15. I installed the Oracle Instant Client (32bits tbm) and then extracted in the "ext" php folder version 2.1.3 of OCI8 according to this site…
-
0
votes3
answers665
viewsA: What does the term "routing" mean in the context of MVC architecture?
It’s roughly the urls we’re going to use to access our system. For example, if I want to create a view that allows me to register a user I need to define a route both to get to this view and to move…
-
0
votes0
answers70
viewsQ: How to make a filter in Laravel 5.3
Hello, I’ve been trying to make a form that receives a Cpf and if this Cpf is in the database it returns all the data linked to this Cpf (name, position, code etc) right next to the form, in the…
-
0
votes1
answer450
viewsA: Problem with Datatables in Laravel 5.2
The problem is that you have to go to the app.blade.php folder (where the head and body is to put the links and scripts) and put the files there. js and .css. I had done this but the problem is that…
laravel-5answered RamonVicente 115 -
0
votes1
answer450
viewsQ: Problem with Datatables in Laravel 5.2
Hello, I tried using Datatables server-side and not server-side but it does not display the datatables. I do everything according to the document (https://datatables.net/) and in tutorials on the…
laravel-5asked RamonVicente 115 -
1
votes2
answers498
viewsA: Register of dependent picking ID of the respective employee with Laravel 5.2
The problem was the variable that was being instantiated erroneously. I thank you for your help!
-
2
votes2
answers498
viewsQ: Register of dependent picking ID of the respective employee with Laravel 5.2
My problem is that when registering a new dependent the input, which has the employee ID that the dependent will be related to, is automatically filled with the ID of the given user and not that the…
-
2
votes1
answer194
viewsQ: How to list the depedents of a particular employee with Laravel?
Hi, I happen to be taking my first steps on the Laravel. I created a database with two tables (dependents and employees), created the crud of each and display the whole system in html (bootstrap).…
laravel-5asked RamonVicente 115 -
0
votes2
answers190
viewsQ: Javascript validation is not working
I’m stuck in a jam. I made an html form and created a javascript document, but the function I created does not work (as if it was not called) I tried several things and I still can’t. Here are the…
-
0
votes1
answer421
viewsA: Convert Sequence diagram to Java
Assemble the class diagram containing the classes that make up the problem and generate the java code from it (using tools->java on astah). Only the given sequence diagram thus becomes…