How can I add the array in $add to my full array, so its number [3]:
$add = array('email' => '[email protected]', 'm_field_id_9' => 'Name2');
My array printed out:
Array (
[0] => Array (
[email] => [email protected]
[m_field_id_9] => Name
)
[1] => Array (
[email] => [email protected]
[m_field_id_9] => Name
)
[2] => Array (
[email] => [email protected]
[m_field_id_9] => Name
)
)
I have tried array_push(), but I can't get it to add the array.