Folders renumbered
Folders renumbered
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
$products = array(
|
||||
|
||||
'paper' => array(
|
||||
|
||||
'copier' => "Copier & Multipurpose",
|
||||
'inkjet' => "Inkjet Printer",
|
||||
'laser' => "Laser Printer",
|
||||
'photo' => "Photographic Paper"),
|
||||
|
||||
'pens' => array(
|
||||
|
||||
'ball' => "Ball Point",
|
||||
'hilite' => "Highlighters",
|
||||
'marker' => "Markers"),
|
||||
|
||||
'misc' => array(
|
||||
|
||||
'tape' => "Sticky Tape",
|
||||
'glue' => "Adhesives",
|
||||
'clips' => "Paperclips"
|
||||
)
|
||||
);
|
||||
|
||||
echo "<pre>";
|
||||
|
||||
foreach($products as $section => $items)
|
||||
foreach($items as $key => $value)
|
||||
echo "$section:\t$key\t($value)<br>";
|
||||
|
||||
echo "</pre>";
|
||||
?>
|
||||
Reference in New Issue
Block a user