i want to mutiply all the values in a foreach array by itself
here is an example of the array Array ( [0] => 2.4 [1] => 6 ) , all i want to do is mutiply 2.4*6
foreach($pp_events as $key=>$value)
{
#echo $value;
$pick=mysql_query("select * from pick where eventid='$value'");
$row=mysql_fetch_array($pick);
$sum*=$row['startPrice'];
}