looping through an array and grabbing the keys

franki2k3

New Member
\[code\]Array ( [Screens] => Array ( [0] => Array ( [ SPKRS ] => Array ( [price] => 455 [quantity] => 3 [image] => ) ) ) [Software] => Array ( [0] => Array ( [Pricing] => Array ( [price] => 2 [quantity] => 2 [image] => SOFTWARE.png [ALDELO FOR RESTAURANTS] => Array ( [price] => 535 [quantity] => 1 [image] =>) ) ) [Networking] => Array ....\[/code\]the array is $products\[code\]<?php foreach ($products as $product): ?> <div class="box-active"> <div class="line"> <div class="text left"> <p><?php print key($product); ?></p>\[/code\]it prints 0 for all three
 
Back
Top