<?php
$tab1 = array(1,2,3,4); // automatique
$tab2 = array('couleur' => 'rouge',
'gout' => 'sucre', // associative
'forme' => 'rond',
'nom' => 'pomme');
echo ($tab1[0]); // affiche 1
echo ($tab2['gout']); // affiche sucre
echo ($tab2[0]); // Ne fonctionne pas (plus depuis un certain temps...)
?>