LPMJ Example 3-5 (Click on the icon to view the source for copy and pasting)
<?php
$oxo = array(array('x', '',  'o'),
             array('o', 'o', 'x'),
             array('x', 'o', '' ));

echo $oxo[1][2];
?>