$product_list=array("Apple mac","Dell Laptop","Hp Laptop");//putting some dummy productname instead of real oneforeach($product_list as $value);
{
echo $value."<br/>";
}
Wrong is ";" put after foreach($product_list as $value)
so foreach($product_list as $value); means it iterate loop and end the stantment because of ";" but dont process next '{ echo $value."<br/>"; }' code .
so you need like
foreach($product_list as $value){
echo $value."<br/>";
}
for the best understanding
foreach($product_list as $value);
means
foreach($product_list as $value){}