array_push($array, getData()) gives me:
Array
(
[customer] => One
[itemno] => Yellow Ribbon
)
Array
(
[customer] => One
[itemno] => Blue Band
)
Array
(
[0] => Array
(
[customer] => Two
[itemno] => Red Tape
)
)
But what I want is:
Array
(
[customer] => One
[itemno] => Yellow Ribbon
)
Array
(
[customer] => One
[itemno] => Blue Band
)
Array
(
[customer] => Two
[itemno] => Red Tape
)
What am I supposed to use?