Posts by Danyel Pires • 29 points
9 posts
-
0
votes5
answers2417
viewsA: How do I get the value of an Hidden input with jquery
Use an id in the fields you need to receive the value Ex <input type="hidden" id="valor1" value="1"> <input type="hidden" id="valor2" value="35"> <input type="hidden" id="valor3"…
jqueryanswered Danyel Pires 29 -
0
votes2
answers47
viewsA: How do Insert in the bank for forms on the same page?
takes the fields from inside the form and uses ajax to send the data. when you have a button type="Submit" inside a form, whenever the button type="Submit" is triggered, it will update the page and…
-
0
votes2
answers484
viewsA: How to pass varivlle from a PHP file to another PHP file
uses include in the file you want to use the variable. for example: arquivoOrigem.php echo $nominarquivo; //the result must be 'test' that is set in the file 'Mergepdf.class.php'…
-
0
votes2
answers82
viewsA: send file by ajax
No JS is missing the "action: 'nameFuncaoPHP'" In PHP is missing the Function that will receive this data.
-
0
votes3
answers134
viewsA: I’m having trouble summing up the column
Use the SUM function that will solve your problem. SELECT SUM (d.vlr_liq_nf) AS valor FROM TPL_GUARDA g LEFT JOIN TPL_COLETAS c ON g.SALES_ORDER = c.SALES_ORDER LEFT JOIN humo h ON h.HANDLING_UNIT =…
-
1
votes1
answer220
viewsA: INSERT WITH TWO TABLES - PHP
Usa a função mysql_insert_id(); depois do insert aluno, vc usa mysql_insert_id() e grava em outra variavel. Exemplo: $aluno_ID = mysql_insert_id(); E depois usa essa…
-
-1
votes1
answer7600
viewsA: Alert function in Jquery
Primeiro de um espaço entre as suas classes css $('.card .Billet') depois adicione e.preventDefault(); vai ficar…
jqueryanswered Danyel Pires 29 -
0
votes2
answers53
viewsA: Doubt SELECT Mysql
Quando vc usa "AND", a busca retorna tudo que seja igual. Nesse caso, a.IdA = b.IdB "AND" a.C = b.D; Isso esta dizendo que o resultado de que une a referencia…
-
2
votes3
answers5980
viewsA: Column Size with Datatables
Try the following: $('#table-clientes').DataTable( { "ajax": baseURL, "deferRender": true, "order": [[ 0, "asc" ]], "pageLength": 300, "columnDefs": [ { "title": "Nome do Cliente", "data":…