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); } $i=0; while (list($tot_votanti,$validi,$nulli,$bianchi,$contestati,$id,$si,$no) = mysql_fetch_row($res)){ # calcolo sezioni if($genere==0) $res_sez = mysql_query("select count(0) from ".$prefix."_ele_voti_".$tab." where id_cons='$id_cons' and id_gruppo='$id'", $dbi); else $res_sez = mysql_query("select count(0) from ".$prefix."_ele_sezioni where id_cons='$id_cons' and validi+nulli+bianchi+contestati>0", $dbi); if($res_sez) list($numero)=mysql_fetch_row($res_sez); else $numero=0; $res_sez = mysql_query("select t3.* from ".$prefix."_ele_voti_".$tab." as t3 left join ".$prefix."_ele_sezioni as t1 on t3.id_sez=t1.id_sez left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t3.id_cons='$id_cons' $circos group by t3.id_sez ",$dbi); $res_sez = mysql_query("select t1.* 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); $sezioni=mysql_num_rows($res_sez); $tot_votanti=$validi+$bianchi+$nulli+$contestati; $arvoti=array($validi,$nulli,$bianchi,$contestati); $arperc=arrayperc($arvoti,$tot_votanti); 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($arperc[0],2);#number_format($validi*100/$tot_votanti,2); $perc_nulli=number_format($arperc[1],2); $perc_bianchi=number_format($arperc[2],2); $perc_conte=number_format($arperc[3],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); } $i++; if($i==1)echo "
"._DETTAGLIO." "._VOTIE."
"; if($i==1)echo "
[ Percentuali Relative ]
"; if ($genere==0) {echo "
Referendum n. [$num_gruppo]
";} echo "
"._SEZSCRU." $numero "._SU." $sezioni
"; echo ""; echo " "; if ($genere==0){ echo ""; } echo "
"._AVENTI."$tot_aventi100.00%
"._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%
"; } ?>