jnbill1204
New member
I have an array that I have posted to a form and I cannot seem to figure out how to get it out. Here is what it looks like
[attributes] => Array
(
[1] => 1
)
What I want to do is take that attributes array and add more arrays inside of it but I cannot seem to figure out how do that.
I want to look like this
[attributes] => Array
(
[1] => 1
[10] => 'this is a test'
[4] => '10/30/1906'
)
How can do this?
[attributes] => Array
(
[1] => 1
)
What I want to do is take that attributes array and add more arrays inside of it but I cannot seem to figure out how do that.
I want to look like this
[attributes] => Array
(
[1] => 1
[10] => 'this is a test'
[4] => '10/30/1906'
)
How can do this?