1 | <?php
|
---|
2 | /************************************************************************/
|
---|
3 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
4 | /* by Roberto Gigli & Luciano Apolito */
|
---|
5 | /* http://www.eleonline.it */
|
---|
6 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
7 | /************************************************************************/
|
---|
8 | /* widget pie google affluenze
|
---|
9 | by luc 25 giugno 2009 */
|
---|
10 |
|
---|
11 | global $circo,$prefix,$dbi,$id_cons,$genere,$id_circ,$id_comune,$id_cons_gen;
|
---|
12 |
|
---|
13 | if (isset($circo) and $circo) $circos="and t2.id_circ='$id_circ'";
|
---|
14 | else $circos='';
|
---|
15 | // numero sezioni scrutinate
|
---|
16 |
|
---|
17 | $res2 = 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);
|
---|
18 | $sezioni=mysql_num_rows($res2);
|
---|
19 |
|
---|
20 | $res = mysql_query("select orario,data from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' order by data desc,orario desc limit 1", $dbi);
|
---|
21 | if($res){
|
---|
22 |
|
---|
23 | while(list($orario,$data) = mysql_fetch_row($res)) {
|
---|
24 | list ($ore,$minuti,$secondi)=explode(':',$orario);
|
---|
25 | list ($anno,$mese,$giorno)=explode('-',$data);
|
---|
26 | $tot_v_m=0;$tot_v_d=0;$tot_t=0;
|
---|
27 |
|
---|
28 |
|
---|
29 | $res1 = mysql_query("select t3.* 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 group by t3.id_sez ",$dbi);
|
---|
30 | $numero=mysql_num_rows($res1);
|
---|
31 |
|
---|
32 | echo "<h5>Ultime Affluenze</h5>";
|
---|
33 | echo "<div style=\"text-align:center;color:#ff0000\">"._PERC_TEND."<br><b>"._ORE." $ore,$minuti "._DEL." $giorno/$mese/$anno</b></div>";
|
---|
34 |
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 | # $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);
|
---|
39 | #modifica del 26giugno 09 per gestione circoscrizionali
|
---|
40 | 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);
|
---|
41 | else
|
---|
42 | $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);
|
---|
43 | #fine modifica
|
---|
44 |
|
---|
45 |
|
---|
46 |
|
---|
47 |
|
---|
48 | while(list($voti_t, $num_gruppo,$id_gruppo) = mysql_fetch_row($res1)) {
|
---|
49 |
|
---|
50 | $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";
|
---|
51 | if ($genere==0){$query.=" and t3.id_gruppo=$id_gruppo";}
|
---|
52 | $res_aff=mysql_query($query, $dbi);
|
---|
53 | $voti_numero=mysql_num_rows($res_aff);
|
---|
54 |
|
---|
55 | $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";
|
---|
56 |
|
---|
57 | if ($genere==0){$query.=" and id_gruppo=$id_gruppo";}
|
---|
58 | $res1234=mysql_query($query, $dbi);
|
---|
59 | list($tot)=mysql_fetch_row($res1234);
|
---|
60 | if ($tot)
|
---|
61 | $perc=number_format($voti_t*100/$tot,2);
|
---|
62 | else {$tot=0;$perc="0.00";}
|
---|
63 |
|
---|
64 | $resto=100-$perc;
|
---|
65 | if ($genere==0){echo "<div style=\"text-align:center\">referendum n. $num_gruppo</div";}
|
---|
66 |
|
---|
67 |
|
---|
68 |
|
---|
69 |
|
---|
70 | echo "<center><img src=\"http://chart.apis.google.com/chart?
|
---|
71 | chs=160x160
|
---|
72 | &cht=bvs
|
---|
73 | &chd=t:0,$perc,0
|
---|
74 | &chxt=y
|
---|
75 | &chco=
|
---|
76 | &chl=|$perc% |\"
|
---|
77 |
|
---|
78 | alt=\"Sample chart\" />
|
---|
79 |
|
---|
80 | <br/><a href=\"modules.php?id_cons_gen=$id_cons_gen&name=Elezioni&id_comune=$id_comune&file=index&op=affluenze_graf\">Tutte le affluenze</a>
|
---|
81 | </center>";
|
---|
82 |
|
---|
83 |
|
---|
84 | }
|
---|
85 |
|
---|
86 | }
|
---|
87 | }
|
---|
88 | ?>
|
---|