Posts by paulequilibrio • 301 points
7 posts
-
1
votes2
answers176
viewsA: What is the forecast to support importing text/html content into modern browsers using the link tag?
You can check the progress of the implementation of this functionality by the main browsers in the section Browser Support of the site https://www.webcomponents.org…
-
4
votes3
answers1017
viewsA: Is there a limit or restriction on variable name sizes?
There should probably be a restriction on the size of the variable names in javascript, I can’t tell you what the maximum allowed, but it’s probably a big number, which you shouldn’t worry about.…
javascriptanswered paulequilibrio 301 -
0
votes2
answers74
viewsA: Invoices not paid more than 10 days
Something like that: SELECT * FROM faturas WHERE status = 'NP' AND vencimento BETWEEN CURRENT_DATE()-10 AND CURRENT_DATE(); As you did not post the structure of the tables, I could not give a query…
-
1
votes1
answer931
viewsA: unlink() as Delete only one file from the file
The answer to your question is yes! You have to indicate somehow which is the only file you want to delete. Your code is deleting all the files because it is inside a while loop that traverses all…
-
1
votes3
answers1025
viewsA: problem in C with rest of the division
The operator % provides you the rest of the division of a number (the dividend) by another number (the divisor). So, you need to provide the two numbers to the operator. Some examples: 5 % 2 = 1 6 %…
-
0
votes3
answers5089
viewsA: How to pass a json containing data array to Php?
I tested here with your code and managed to make it work with the following change. In the archive recebeJson.php, put the following content: $json = json_decode(file_get_contents("php://input"),…
-
10
votes1
answer2885
viewsA: I can’t create project using Express Node.js
It seems to me that you are calling 'express' two different packages: express (https://www.npmjs.com/package/express) and express-generator (https://www.npmjs.com/package/express-generator) The…
node.jsanswered paulequilibrio 301