Posts by Anderson Moreira • 35 points
4 posts
-
0
votes2
answers514
viewsQ: How do I do a javascript updating form data?
I’m starting to learn Javascript now, and I have to fill out a form with some data I have in a database. When performing the query in the database (via php), u have a multidimensional array like…
-
1
votes1
answer137
viewsQ: How to treat each value of an array without knowing the index name?
Here’s the thing, I’m creating a function that takes an array and turns the writing into uppercase, the code is the following: function uppercase($post_array) //ok {…
-
2
votes1
answer455
viewsA: Customize data from a codeigniter session array
I was able to solve the problem, created a model where I did the query and returned the data, so I filled in the session array. So the Controller was: $this->load->model('login'); $usuario =…
-
0
votes1
answer455
viewsQ: Customize data from a codeigniter session array
I am trying to create an array with the data I recover from the database, my code is like this $usuario = $this->input->post("usuario"); $senha = $this->input->post("senha");…