Posts by Henrique • 9 points
4 posts
-
0
votes3
answers608
viewsA: Install FONT in HTML?
Hello! You need to see if the web server is configured to give the right mime-type for these extensions you are using from source. On my Apache servers I had to register almost all of them manually.…
-
0
votes1
answer43
viewsA: How to insert and remove table data with jquery?
Here is an alternative: function grava() { //pega o valor da select var getValue = $('#id-select').val(); //adiciona a linha da tabela var incremment = "<tr id='" + getValue + "'><td>" +…
-
-2
votes1
answer177
viewsQ: Get last ID value and add +1 in SQL Database
I’m new to this language, I was previously using a auto_increment to save the ID sequentially in the bank, but found problems in other functions. My question is: How do I get the last "id" of the…
-
-1
votes1
answer66
viewsQ: How to add elements from a table based on a parameter
My table: <table class="tabela_finan table table-bordered mb-0"> <thead class="thead-dark"> <tr> <th>#</th> <th>O.S.</th> <th>Data</th>…