// 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)); }