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))
try
echo ""; $i=0; $theCount = count($tab); while($i<$theCount){ echo ""; echo " FIRST ELEMENT OF THE TAB ==> {$tab[$i]}"; $i++; echo " FIRST ELEMENT OF THE TAB ==> {$tab[$i]}"; echo ""; $i++; } echo "";