I have the array array ( [0] => array(1,2,3,4,5) [1] => array(6,7,8,9,10)) and I would like to display it like this:
array ( [0] => array(1,2,3,4,5) [1] => array(6,7,8,9,10))
" . $tab[$i] . ""; echo "" . $tab[$i+1] . ""; } ?>
Like that.