Posts by Andre Garcia • 18 points
4 posts
-
-2
votes2
answers106
viewsA: "Internal Server Error" error on localhost:3000 server when using the npm run dev command
There is a probability that you are doing Next Module Import wrong. Check the application’s Imports with if you have Maiscula letter or mininuscula letter. Npm is indicating that it has multiple…
-
-3
votes1
answer41
viewsA: How to use the same Script several times on a single page?
You are using the tag with a bad practice. A good practice of using the Script tag is to place them at the bottom of the page, so the DOM will render first that the tag and will run smoothly. I hope…
-
-1
votes1
answer41
viewsA: I’m a beginner and I’m wondering how to create a function that multiplies an indeterminate number in Javascript
This is very simple. Every JS function has a local variable called arguments, which stores function parameters or arguments in Object form In this example the function will do what you want function…
javascriptanswered Andre Garcia 18 -
-1
votes1
answer27
viewsA: Doubt about PHP global variables
Are superglobal variables of PHP, where it is available in all Scopes of the script $_SESSION is an array that stores all user session information, lasts by default 14 minutes all information in…