Posts by José Roberto Juliana • 127 points
17 posts
-
1
votes3
answers131
viewsA: Problem when trying to add elements ckeditor
I appreciate the answers, yesterday morning I ended up solving and it is much simpler than I thought, as always it comes to programming. I tried these scripts but unsuccessfully for me. what I did…
-
0
votes3
answers131
viewsQ: Problem when trying to add elements ckeditor
I have a page that carries a modal bootstrap. Within Modal there is a textarea with ckeditor. The problem when I try to add a table for example, I click on the add table icon it opens the dialog…
-
0
votes1
answer195
viewsA: Group two columns into two mysql tables
Thanks for the personal help, it was not really a generic solution that I found, but rather a different logic and the understanding that logic would not need to display the names of the processes…
-
-1
votes1
answer195
viewsQ: Group two columns into two mysql tables
I have two tables that I am joining to recover the related data in this way: Tabela Processos: Tabela Anexos id | processos processoid | titulo 1 | Processo 1 1 | REQUERIMENTO 2 | Processo 2 1 |…
-
0
votes1
answer85
viewsA: data mask with php
I was able to do it this way: function str_replace_string($search, $replace, $subject) { return str_replace($search, $replace, $subject); } $mask = array('%NOME%', '%EMAIL%', '%CPF%', '%RG%',…
-
0
votes1
answer85
viewsQ: data mask with php
I am trying unsuccessfully to replace the values returned from a database field, which returns a ckeditor html code. I’m trying to do it this way: $class = new Selecionar();…
-
0
votes2
answers382
viewsQ: reset variable increment javascript
what I need seems to be very simple but I haven’t found a solution yet. I have that code var countID = 1; $("#addArma").click(function (e) { e.preventDefault(); var tipoCampo = "arma";…
-
2
votes0
answers74
viewsQ: css code has corrupted after system error
hello need urgent help, was working on the pc suddenly the pc stopped and restarted, when it came back, my css file was corrupted and now it appears in several lozenges code with interrogation, have…
-
2
votes0
answers187
viewsQ: Change wordpress database Woocommerce
I made a system for the back-end of a wordpress store that uses the Woocommerce plugin. The client requested me to make a login system with custom registration, because well, I made the system with…
-
2
votes1
answer27
viewsQ: compare dates within the sql query
I need to compare the date registered in the bank +10 days with the current date and display the student that the current date is greater than 10 days, but this within the sql query. Is there a…
-
0
votes3
answers48
viewsA: compare sql tables displaying different result
Solved with Marciano Machado’s tip, thank you! NOT EXISTS (SELECT * FROM release WHERE student = registration.id ) "SELECT cadastro.*, liberar.* FROM cadastro INNER JOIN liberar WHERE liberar.title…
-
0
votes3
answers48
viewsQ: compare sql tables displaying different result
I have an sql query that lists two tables: register and release. I have an application that adds the "id" of "registration" in the "release" table, i intend to display only the results that DO NOT…
-
-1
votes1
answer50
viewsQ: Catch id auto increment of two joined tables (INNER JOIN)
Let’s see if I can explain at first... have two tables [topics] and [notification] I joined these tables with INNER JOIN to get the data of both, so far so good... but when I need to select the [id]…
-
2
votes1
answer287
viewsQ: relate two tables listing only last php record
I have a jig table as follows: | materia | provaID | matricula | questao | resposta | matematica 303 211834 quest1 A matematica 303 211834 quest2 C matematica 303 211834 quest3 B matematica 303…
-
0
votes2
answers127
viewsA: Combine alternative array with query array php/jquery
Hello thanks to the staff for the help in particular to the moderator Sergio I managed to pass everything to PHP, both the questions, and the alternatives and was like this: $("body").on('click',…
-
0
votes2
answers127
viewsQ: Combine alternative array with query array php/jquery
My doubt is the following: I have this code jquery where I capture all the questions of a proof and just below the alternatives of it; but I can’t relate the alternatives to the questions, someone…
-
1
votes1
answer765
viewsQ: traverse array and insert break line jquery
This application does not work as expected. var storeElements = []; var store = []; $('body').on('click', 'a.add_aluno', function () { var aside = $(this).parent().parent().children('aside');…