Dean C
02-14-2004, 10:24 AM
// do percentage calculations and votes stuff
for($i = 1; $i <= 4; $i++)
{
$votes[$i] = $pollinfo["option$i"."votes"];
$totalvotes += $votes[$i];
}
for($i = 1; $i <= 4; $i++)
{
$percent[$i] = floor((($votes[$i] / $totalvotes) * 100));
}
Anyway of making that into one loop? :) Just trying to learn new techniques - I don't use for loops often :)
for($i = 1; $i <= 4; $i++)
{
$votes[$i] = $pollinfo["option$i"."votes"];
$totalvotes += $votes[$i];
}
for($i = 1; $i <= 4; $i++)
{
$percent[$i] = floor((($votes[$i] / $totalvotes) * 100));
}
Anyway of making that into one loop? :) Just trying to learn new techniques - I don't use for loops often :)