Posts by Amiz Queiroz • 21 points
3 posts
-
0
votes1
answer55
viewsA: Error in Javascript. "prompt not set"
The prompt in reference is a library, if you already have it installed, just import the library into your script, if not, install via NPM. In case it will install, recommend the prompt-sync for…
-
0
votes4
answers97
viewsA: Find a ( string ) value in a PHP array
all right? To access a specific value in a @rray you must pass the key you want in some way. Since the data is cluttered, you should pass the name of the key you want to return in the following way:…
-
1
votes1
answer41
viewsQ: Database return in asynchronous function with await
I have an asynchronous function that I need to use await in the return of the database to use this data later when doing the next insertion using the LAST_USER_ID() MYSQL, however, using the await…