|
I created this array
$products = array(
"ibm" => array (
"id" => "ibm",
"qty" => 0,
"name" => "IBM Laptop",
"price" => "200.00"
),
"dell" => array (
"id" => "dell",
"qty" => 0,
"name" => "Dell Laptop",
"price" => "300.00"
),
"gateway" => array (
"id" => "gateway",
"qty" => 0,
"name" => "Gateway Laptop",
"price" => "400.00"
I want to use the foreach funtion to display name price and qty
How can I do this??
|