0
How can I add items to the array this way:
array_push($arr, $end[0] => $end[1]);
did not want to add a new array within the existing one, but rather to add new items in the $key style => $content
to look like this:
[A] => B
[C] => D
and not like this:
array(
array ( [A] => B ),
array ( [C] => D )
)