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 |
|
---|
9 | global $circo,$prefix,$dbi,$id_cons,$genere,$id_circ;
|
---|
10 |
|
---|
11 | if (isset($circo) and $circo) $circos="and t2.id_circ='$id_circ'";
|
---|
12 | else $circos='';
|
---|
13 | // numero sezioni scrutinate
|
---|
14 | // $res2 = mysql_query("select * from ".$prefix."_ele_sezioni where id_cons='$id_cons'",$dbi);
|
---|
15 | $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);
|
---|
16 | $sezioni=mysql_num_rows($res2);
|
---|
17 |
|
---|
18 | //echo "select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos";
|
---|
19 |
|
---|
20 |
|
---|
21 |
|
---|
22 | // barre
|
---|
23 | $l_size = getimagesize("modules/Elezioni/images/barre/leftbar.gif");
|
---|
24 | $m_size = getimagesize("modules/Elezioni/images/barre/mainbar.gif");
|
---|
25 | $r_size = getimagesize("modules/Elezioni/images/barre/rightbar.gif");
|
---|
26 | $l_size2 = getimagesize("modules/Elezioni/images/barre/leftbar2.gif");
|
---|
27 | $m_size2 = getimagesize("modules/Elezioni/images/barre/mainbar2.gif");
|
---|
28 | $r_size2 = getimagesize("modules/Elezioni/images/barre/rightbar2.gif");
|
---|
29 |
|
---|
30 | # $res = mysql_query("select orario,data from ".$prefix."_ele_rilaff where id_cons_gen='$id_cons_gen' order by data desc,orario DESC limit 1", $dbi);
|
---|
31 | #x Luciano: quella sopra diventa quella sotto. in rilaff ci sono tutte le date e orari di affluenza mentre in vot_parziale solo quelli inseriri
|
---|
32 | # inoltre va messo il desc anche alla data altrimenti il risultato ha la data piu' bassa e l'ora piu' alta
|
---|
33 | $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);
|
---|
34 | if($res){
|
---|
35 |
|
---|
36 | while(list($orario,$data) = mysql_fetch_row($res)) {
|
---|
37 | list ($ore,$minuti,$secondi)=explode(':',$orario);
|
---|
38 | list ($anno,$mese,$giorno)=explode('-',$data);
|
---|
39 | $tot_v_m=0;$tot_v_d=0;$tot_t=0;
|
---|
40 |
|
---|
41 | $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);
|
---|
42 |
|
---|
43 | $numero=mysql_num_rows($res1);
|
---|
44 |
|
---|
45 | echo "<br /><div><h5>Ultime Affluenze</h5></div>";
|
---|
46 | echo "<div style=\"text-align:center;color:#ff0000\"><b>"._ORE." $ore,$minuti "._DEL." $giorno/$mese/$anno</b></div>";
|
---|
47 |
|
---|
48 |
|
---|
49 |
|
---|
50 |
|
---|
51 |
|
---|
52 | #modifica del 26giugno 09 per gestione circoscrizionali
|
---|
53 | 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);
|
---|
54 | else
|
---|
55 | $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);
|
---|
56 | #fine modifica
|
---|
57 |
|
---|
58 |
|
---|
59 |
|
---|
60 |
|
---|
61 | while(list($voti_t, $num_gruppo,$id_gruppo) = mysql_fetch_row($res1)) {
|
---|
62 | // $res1 = mysql_query(,$dbi);
|
---|
63 | // $query="select sum(voti_complessivi) from ".$prefix."_ele_voti_parziale where orario='$orario' and data='$data' and id_cons='$id_cons'";
|
---|
64 | $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";
|
---|
65 | if ($genere==0){$query.=" and t3.id_gruppo=$id_gruppo";}
|
---|
66 | $res_aff=mysql_query($query, $dbi);
|
---|
67 | $voti_numero=mysql_num_rows($res_aff);
|
---|
68 | // $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'";
|
---|
69 | $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";
|
---|
70 |
|
---|
71 | if ($genere==0){$query.=" and id_gruppo=$id_gruppo";}
|
---|
72 | $res1234=mysql_query($query, $dbi);
|
---|
73 | list($tot)=mysql_fetch_row($res1234);
|
---|
74 | if ($tot)
|
---|
75 | $perc=number_format($voti_t*100/$tot,2);
|
---|
76 | else {$tot=0;$perc="0.00";} echo "<table class=\"td-80\"><tr class=\"bggray\">";
|
---|
77 | if ($genere==0){echo "<td>N.</td>";}
|
---|
78 | echo "<td><b>"._VOTANTI."</b></td><td><b>"._PERCE."</b></td>";
|
---|
79 | echo "<td><b>"._SEZIONI."</b></td>";
|
---|
80 | echo "</tr>";
|
---|
81 | echo "<tr class=\"bggray2\">";
|
---|
82 | if ($genere==0){echo "<td>$num_gruppo</td>";}
|
---|
83 | // echo "<td>$voti_t</td><td>$perc %</td><td>$numero</td>
|
---|
84 | echo "<td>$voti_t</td><td>$perc %</td><td>$numero</td>
|
---|
85 | </tr></table>";
|
---|
86 |
|
---|
87 |
|
---|
88 | // barre
|
---|
89 |
|
---|
90 | echo "<table><tr><td><table><tr><td> </td><td>
|
---|
91 | <img src=\"modules/Elezioni/images/barre/leftbar2.gif\" height=\"$l_size2[1]\" width=\"$l_size2[0]\" alt=\"\" /><img src=\"modules/Elezioni/images/barre/mainbar2.gif\" alt=\"\" height=\"$m_size2[1]\" width=\"". ($perc * 1)."\" /><img src=\"modules/Elezioni/images/barre/rightbar2.gif\" height=\"$r_size2[1]\" width=\"$r_size2[0]\" alt=\"\" /><span class=\"red\"> $perc</span> % <br /></td></tr>\n";
|
---|
92 |
|
---|
93 | $tot_gen=$tot;
|
---|
94 |
|
---|
95 |
|
---|
96 | echo "<tr><td></td><td><img src=\"modules/Elezioni/images/barre/leftbar.gif\" height=\"$l_size[1]\" width=\"$l_size[0]\" alt=\"\" /><img src=\"modules/Elezioni/images/barre/mainbar.gif\" alt=\"\" height=\"$m_size[1]\" width=\"".(100 * 1)."\" /><img src=\"modules/Elezioni/images/barre/rightbar.gif\" height=\"$r_size[1]\" width=\"$r_size[0]\" alt=\"\" /> 100 % </td></tr></table>";
|
---|
97 | echo "</td></tr></table>";
|
---|
98 |
|
---|
99 | }
|
---|
100 |
|
---|
101 | }
|
---|
102 | }
|
---|
103 | ?>
|
---|