Array printing

key()
key() returns the index element of the current array position.

All elements use [] not commas like vb
$menu[10][10][10] for php

print_r ($Names);

<?php
$fruits = array (
“fruits”  => array(“a” => “orange”, “b” => “banana”, “c” => “apple”),
“numbers” => array(1, 2, 3, 4, 5, 6),
“holes”   => array(“first”, 5 => “second”, “third”)
);
?>