Posts by Matheus10772 • 29 points
6 posts
-
0
votes1
answer70
viewsA: Ajax does not send data to PHP
I found the solution. I switched POST to GET, both in ajax code and PHP code and it worked.
-
-2
votes1
answer70
viewsQ: Ajax does not send data to PHP
I have the following code in Ajax: <script> $('#enviar').click(function() { let dados let filtros = document.getElementsByName('filtro[]'); let filtrosvalidos = [];…
-
0
votes2
answers141
viewsQ: How to remove elements from a javascript list
I’m making a small javascript program to generate a tabulation. To prevent duplicates from occurring, I put in a small code snippet to clear the list before generating the table let numero =…
-
0
votes2
answers57
viewsQ: Java script: get the element by ID says it is NULL
I am learning to code in javascript and I made a small code to sum two numbers. I put the result to be overwritten on top of "result", but this is not done. When using the chorme element inspect it…
-
1
votes0
answers20
viewsQ: Doubt regarding C pointers
I am writing a program that has 3 files: algorithms. h, algorithms. c and main. c. This program has several integer vector ordering algorithms. With the intention of making the program more…
-
0
votes1
answer168
viewsQ: Program in C closing without explanation
I am doing a C program that aims to read a list of purchases stored in a text file and add the total value of the prices of the products. In each line of the file has, the product name, the quantity…