"._DETTAGLIO." "._VOTIE." - ";
echo " "._SEZSCRU." $numero "._SU." $sezioni
";
$res1 = 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' $circos",$dbi);
list($tot_aventi) = mysql_fetch_row($res1);
if ($genere!=0) {
$res1 = 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'
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 $circos having tot>0",$dbi);
}else{
$res1 = mysql_query("SELECT sum(validi+nulli+bianchi+contestati) as tot,
sum(validi),sum(nulli),sum(bianchi),sum(contestati), id_gruppo
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) = mysql_fetch_row($res1)){
$tot_votanti=$validi+$bianchi+$nulli+$contestati;
$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);
$perc_votanti=number_format($tot_votanti*100/$tot_aventi,2);
$non_votanti=($tot_aventi - $tot_votanti);
$perc_non=100-$perc_votanti;
if ($genere==0) {
$res = mysql_query("SELECT num_gruppo,descrizione from ".$prefix."_ele_gruppo where id_gruppo=$id",$dbi);
list($num_gruppo,$descr_gruppo) = mysql_fetch_row($res);
}
echo "";
if ($genere==0) {echo "
Referendum n. [$num_gruppo]
";}
echo "
"._AVENTI." | $tot_aventi | 100% |
"._VOTANTI." | $tot_votanti | $perc_votanti% |
"._VALIDI." | $validi | $perc_validi% |
"._NULLI." | $nulli | $perc_nulli% |
"._BIANCHI." | $bianchi | $perc_bianchi% |
"._CONTESTATI." | $contestati | $perc_conte% |
";
}
}
?>