A multidimensional array,each element in the main array can also be an array.and each element in the sub-array can be an array,and so on.in this example we create a multidimensional array,with automatically assigned ID keys.
<?php
$products=array
(
"Lenovo"=>array("Leptop","Mobile Phones"),
"Microsoft"=>array("Leptop","Mobile Phones"),
"Dell"=>array("Leptop","Server")
);
?>