Creating arrays with array()
$vegetables = array('corn' => 'yellow',
'beet' => 'red',
'carrot' => 'orange');
$dinner = array(0 => 'S',
1 => 'L',
2 => 'B');
$computers = array('t' => 'A',
2600 => 'B',
'A' => 'C');
?>
Related examples in the same category