Skip to content
Advertisement

Get values from array inside another array for later storing them in db

I’m sending 2 datas with same name at the front side like this

JavaScript

And then I’m trying to store that value in my database through my model methods in codeigniter 3

This is what I was doing before with just 1 data

JavaScript

But now that im dealing with more input data i dont know how to handle it im storing the data like this now

JavaScript

and when i do the var_dump for $streetinfo i get this

JavaScript

}

And then now, I don’t know how to get each value from those keys and make each insert in the db

Advertisement

Answer

Since you’re now passing the data as an array, you’re supposed to use indexes to access each variable. First, store the input data in a variable, then access the different indexes and their respective keys/values.

JavaScript

If you then want to save them to the database, make sure you have the required fields/columns in your database and continue saving the data as usual.

Is this what you’re looking for?

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement