I\'ve been trying to push an item to an associative array like this:
$new_input[\'name\'] = array( \'type\' => \'text\', \'label\' => \'First
This is a cool function
function array_push_assoc($array, $key, $value){ $array[$key] = $value; return $array; }
Just use
$myarray = array_push_assoc($myarray, 'h', 'hello');
Credits & Explanation