May I know how to get the "product" value with foreach loop in PHP?
Array
(
[0] => Array
(
[product] => "Sony"
)
[1] => Array
(
[product] => "Toshiba"
)
[2] => Array
(
[product] => "A4Tech"
)
)
This is my code and I know it is not working after I tried it.
foreach($response as $key => $value){
foreach($key as $pic_small => $value2){
echo $pic_small;
}
}