<?php $cars = array( array( "car" => "Ferrari", "model" => "Testarossa", "gearbox" => "Manual 5 Shift", "designer" => "Battista Pininfarina", "engine" => array( "HP" => 390, "Cylinders" => 12 ) ) ); foreach($cars as $details){ echo "<ul style=\"margin-bottom:10px;\">\n"; foreach($details as $key=>$item){ echo "\t<li><b>",ucfirst($key),":</b>"; if(!is_array($item)){ echo " $item</li>\n"; }else{ echo "\n\t\t<ul>\n"; foreach($item as $subkey=>$subval){ echo "\t\t\t<li><b>$subkey:</b> $subval</li>\n"; } echo "\t\t</ul>\n"; echo "\t</li>\n"; } } echo "</ul>\n"; }
You have javascript disabled. You will not be able to edit any code.