"._DETTAGLIO." "._VOTIE." - "; echo "
"._SEZSCRU." $numero "._SU." $sezioni
"; if ($genere!=0) { $res = mysql_query("select sum(t1.maschi+t1.femmine) from ".$prefix."_ele_sezioni as t1 left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t1.id_cons='$id_cons' and validi>0 $circos",$dbi); list($tot_aventi) = mysql_fetch_row($res); $res = mysql_query("select sum(t1.validi+t1.nulli+t1.bianchi+t1.contestati) as tot, sum(t1.validi),sum(t1.nulli),sum(t1.bianchi),sum(t1.contestati), '0', '0', '0' from ".$prefix."_ele_sezioni as t1 left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t1.id_cons='$id_cons' and validi>0 $circos",$dbi); }else{ $res = mysql_query("SELECT sum(maschi+femmine) FROM ".$prefix."_ele_sezioni where id_cons='$id_cons'",$dbi); list($tot_aventi) = mysql_fetch_row($res); $res = mysql_query("SELECT sum(validi+nulli+bianchi+contestati) as tot, sum(validi),sum(nulli),sum(bianchi),sum(contestati), id_gruppo, sum(si), sum(no) from ".$prefix."_ele_voti_ref where id_cons=$id_cons group by id_gruppo having tot>'0'",$dbi); } while (list($tot_votanti,$validi,$nulli,$bianchi,$contestati,$id,$si,$no) = mysql_fetch_row($res)){ $tot_votanti=$validi+$bianchi+$nulli+$contestati; if($tot_votanti){ if($genere==0 and $validi) {$perc_si=number_format($si*100/$validi,2);$perc_no=number_format(100 - $si*100/$validi,2);} else {$perc_si="0.00"; $perc_no="0.00";} $perc_validi=number_format($validi*100/$tot_votanti,2); $perc_nulli=number_format($nulli*100/$tot_votanti,2); $perc_bianchi=number_format($bianchi*100/$tot_votanti,2); $perc_conte=number_format($contestati*100/$tot_votanti,2); }else {$perc_validi="0.00";$perc_nulli="0.00";$perc_bianchi="0.00";$perc_conte="0.00";} if($tot_aventi) $perc_votanti=number_format($tot_votanti*100/$tot_aventi,2); else $perc_votanti="0.00"; $non_votanti=($tot_aventi - $tot_votanti); $perc_non=100-$perc_votanti; if ($genere==0) { $resg = mysql_query("SELECT num_gruppo,descrizione from ".$prefix."_ele_gruppo where id_gruppo=$id",$dbi); list($num_gruppo,$descr_gruppo) = mysql_fetch_row($resg); } echo ""; if ($genere==0) {echo "
Referendum n. [$num_gruppo]
";} echo " "; if ($genere==0){ echo ""; } echo "
"._AVENTI."$tot_aventi100%
"._VOTANTI."$tot_votanti$perc_votanti%
"._SI."$si$perc_si%
"._NO."$no$perc_no%
"._VALIDI."$validi$perc_validi%
"._NULLI."$nulli$perc_nulli%
"._BIANCHI."$bianchi$perc_bianchi%
"._CONTESTATI."$contestati$perc_conte%
"; } } ?>