How do I add elements to a multidimensional array. For example instead of creating an array in PHP like this:
$i = 0;
$aArray[$i]['title'][] = 'teste';
$aArray[$i]['link'][] = 'teste de link';
Being able to do so
$aArray[$i] = array( 'title' => ??????, 'link' => ????? )
o ???? should add an element to the end of this array