3
how do I add elements to a multidimensional array. For example instead of creating a PHP array in this way:
$i = 0;
$aArray[$i]['title'][] = 'teste';
$aArray[$i]['link'][] = 'teste de link';
Be able to do so
$aArray[$i] = array( 'title' => ??????, 'link' => ????? )
o ???? should add an element at the end of this array
Looking at this Post seems to be the same doubt Voce has. 
 http://stackoverflow.com/a/19099153
– Caio Andrian