PHP Miltidimension array example

Miltidimension array example

<?

$cds = array(
	'1'=>
	array (
		"0" => "Town"
	)
);


echo $cds[1][0];


?>