Ultime Affluenze
";
echo ""._ORE." $ore,$minuti "._DEL." $giorno/$mese/$anno
";
#modifica del 26giugno 09 per gestione circoscrizionali
if($genere==0) $res1 = mysql_query("select sum(t1.voti_complessivi), t2.num_gruppo , t2.id_gruppo from ".$prefix."_ele_voti_parziale as t1 left join ".$prefix."_ele_gruppo as t2 on (t1.id_gruppo=t2.id_gruppo) where t1.id_cons='$id_cons' and t1.orario='$orario' and t1.data='$data' group by t2.num_gruppo,t2.id_gruppo order by t2.num_gruppo " , $dbi);
else
$res1 = mysql_query("select sum(t3.voti_complessivi),0,0 from ".$prefix."_ele_voti_parziale 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' and t3.data='$data' and t3.orario='$orario' $circos",$dbi);
#fine modifica
while(list($voti_t, $num_gruppo,$id_gruppo) = mysql_fetch_row($res1)) {
// $res1 = mysql_query(,$dbi);
// $query="select sum(voti_complessivi) from ".$prefix."_ele_voti_parziale where orario='$orario' and data='$data' and id_cons='$id_cons'";
$query="select sum(t3.voti_complessivi) from ".$prefix."_ele_voti_parziale 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' and t3.data='$data' and t3.orario='$orario' $circos";
if ($genere==0){$query.=" and t3.id_gruppo=$id_gruppo";}
$res_aff=mysql_query($query, $dbi);
$voti_numero=mysql_num_rows($res_aff);
// $query="select sum(maschi+femmine) from ".$prefix."_ele_voti_parziale as t1 , ".$prefix."_ele_sezioni as t2 where t1.id_cons=$id_cons and t1.id_sez=t2.id_sez and orario='$orario' and data='$data'";
$query="select sum(t1.maschi+t1.femmine) from ".$prefix."_ele_voti_parziale 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' and t3.data='$data' and t3.orario='$orario' $circos";
if ($genere==0){$query.=" and id_gruppo=$id_gruppo";}
$res1234=mysql_query($query, $dbi);
list($tot)=mysql_fetch_row($res1234);
if ($tot)
$perc=number_format($voti_t*100/$tot,2);
else {$tot=0;$perc="0.00";} echo "";
if ($genere==0){echo "N. | ";}
echo ""._VOTANTI." | "._PERCE." | ";
echo ""._SEZIONI." | ";
echo "
";
echo "";
if ($genere==0){echo "$num_gruppo | ";}
// echo "$voti_t | $perc % | $numero |
echo "$voti_t | $perc % | $numero |
";
// barre
echo " |
$perc %
| \n";
$tot_gen=$tot;
echo " | 100 % | ";
echo " |
";
}
}
}
?>