Posts by Yuri Freitas • 13 points
4 posts
-
0
votes0
answers19
viewsQ: Data being entered correctly only in debug mode
I’m working on an archive import .txt where the elements are separated by |. So far so good, the file is interpreted, the values are stored in an array and then I need to enter the values in the…
-
0
votes1
answer98
viewsQ: Get element value after AJAX content is loaded
Well, I’m having some doubts regarding the use of Ajax. I’m trying to get a value of a certain element <tr>. For that I put an attribute data- in <tr> which is dynamically generated by…
-
1
votes0
answers331
viewsQ: Display array elements without the key
Hello, I have a small "problem". I am trying to iterate an array session through a foreach, but it always returns only one result. So I used a var_dump() and the result was this: array (size=1) 0…
-
0
votes1
answer60
viewsQ: Access one module from another
Well, I’m learning how to implement MVC with the Express framework, but I came across the following situation in my app.js file: var express = require('express'); var consign = require('consign');…