1 | <?php
|
---|
2 | /************************************************************************/
|
---|
3 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
4 | /* by Luciano Apolito & Roberto Gigli */
|
---|
5 | /* http://www.eleonline.it */
|
---|
6 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
7 | /************************************************************************/
|
---|
8 | /* Ultima modifica 22 maggio 2009 luc - candidati europee */
|
---|
9 |
|
---|
10 | if (!defined('MODULE_FILE')) {
|
---|
11 | die ("Non puoi accedere al file direttamente...");
|
---|
12 | }
|
---|
13 |
|
---|
14 | $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ?
|
---|
15 | $_GET : $_POST;
|
---|
16 |
|
---|
17 |
|
---|
18 | if (isset($param['rss'])) $rss=intval($param['rss']); else $rss='0';
|
---|
19 | if (isset($param['xls'])) $xls=intval($param['xls']); else $xls='0';
|
---|
20 | if (isset($param['pdf'])) $pdf=intval($param['pdf']); else $pdf='0';
|
---|
21 | #if (isset($param['datipdf'])) $datipdf=addslashes($param['datipdf']); else $datipdf='';
|
---|
22 | if(isset($param['visgralista'])) $visgralista=1;
|
---|
23 |
|
---|
24 | #global $id_comune,$id_cons_gen;
|
---|
25 | if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune=$siteistat;
|
---|
26 | if (isset($param['id_cons_gen'])) $id_cons_gen=intval($param['id_cons_gen']); else
|
---|
27 | {
|
---|
28 | $sql="SELECT id_cons FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ";
|
---|
29 | $res = $dbi->prepare("$sql");
|
---|
30 | $res->execute();
|
---|
31 |
|
---|
32 | list($id_cons_pred)=$res->fetch(PDO::FETCH_NUM);
|
---|
33 | $sql="SELECT id_cons_gen FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons_pred' ";
|
---|
34 | $res = $dbi->prepare("$sql");
|
---|
35 | $res->execute();
|
---|
36 |
|
---|
37 | list($id_cons_gen)=$res->fetch(PDO::FETCH_NUM);
|
---|
38 | }
|
---|
39 | if(!count($param)) $op='gruppo';
|
---|
40 | elseif (isset($param['op'])) $op=$param['op']; else $op='';
|
---|
41 | if (isset($param['minsez'])) $minsez=intval($param['minsez']); else $minsez='';
|
---|
42 | if (isset($param['id_lista'])) $id_lista=intval($param['id_lista']); else $id_lista='';
|
---|
43 | if (isset($param['id_circ'])) $id_circ=intval($param['id_circ']); else $id_circ='0';
|
---|
44 | if (isset($param['csv'])) $csv=intval($param['csv']); else $csv='';
|
---|
45 | if (isset($param['min'])) $min=intval($param['min']); else $min= 0;
|
---|
46 | if (isset($param['orvert'])) $orvert=intval($param['orvert']); else $orvert='';
|
---|
47 | if (isset($param['offset'])) $offset=intval($param['offset']); else $offset='';
|
---|
48 | if (isset($param['offsetsez'])) $offsetsez=intval($param['offsetsez']); else $offsetsez='';
|
---|
49 | if (isset($param['perc'])) $perc=$param['perc']; else $perc='';
|
---|
50 | if (isset($param['info'])) $info=addslashes($param['info']); else $info='';
|
---|
51 | if (isset($param['files'])) $files=addslashes($param['files']); else $files='';
|
---|
52 | if (isset($param['voti_lista'])) $voti_lista=intval($param['voti_lista']); else $voti_lista= 0;
|
---|
53 | if (isset($param['perc_lista'])) $perc_lista=$param['perc_lista']; else $perc_lista= 0;
|
---|
54 | if (isset($param['lettera'])) $lettera=addslashes($param['lettera']); else $lettera='';
|
---|
55 | if (isset($param['ordine'])) $ordine=addslashes($param['ordine']); else $ordine='';
|
---|
56 | if (isset($param['id_gruppo'])) $id_gruppo=intval($param['id_gruppo']); else $id_gruppo='';
|
---|
57 | if (isset($param['tipo_cons'])) $tipo_cons=intval($param['tipo_cons']); else $tipo_cons='';
|
---|
58 | if (isset($param['descr_circ'])) $descr_circ=intval($param['descr_circ']); else $descr_circ='';
|
---|
59 |
|
---|
60 | if($info) $_SESSION['info']=$info;
|
---|
61 |
|
---|
62 | # anti-xss nov. 2009
|
---|
63 | $id_comune=intval($id_comune);
|
---|
64 | $perc=htmlentities($perc);
|
---|
65 | $perc_lista=floatval($perc_lista);
|
---|
66 | #$datipdf= htmlentities($datipdf);
|
---|
67 | $op= htmlentities($op);
|
---|
68 | $info= htmlentities($info);
|
---|
69 | $files=htmlentities($files);
|
---|
70 | $lettera=htmlentities($lettera);
|
---|
71 | $ordine=htmlentities($ordine);
|
---|
72 | $cap='';
|
---|
73 | global $limite;
|
---|
74 | $sql="SELECT id_conf FROM ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen' and id_comune='$id_comune'" ;
|
---|
75 | $res = $dbi->prepare("$sql");
|
---|
76 | $res->execute();
|
---|
77 |
|
---|
78 | list($hondt) = $res->fetch(PDO::FETCH_NUM);
|
---|
79 | #$TEST1=": comune:$id_comune -- cons:$id_cons_gen<br>";
|
---|
80 | #$TEST2=": ";
|
---|
81 | #if(isset($_SESSION['id_comune'])) $TEST2.=$_SESSION['id_comune']."<br>";
|
---|
82 |
|
---|
83 | $sql = "SELECT t3.genere,t1.tipo_cons,t1.descrizione,t2.id_cons_gen FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2, ".$prefix."_ele_tipo as t3 where t1.tipo_cons=t3.tipo_cons and t2.id_comune=$id_comune and t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.chiusa!='2' ";
|
---|
84 | $res = $dbi->prepare("$sql");
|
---|
85 | $res->execute();
|
---|
86 |
|
---|
87 | $tot=$res->rowCount();
|
---|
88 | if ($tot>0 and $id_cons_gen>0) {
|
---|
89 | $sql = "SELECT t3.genere,t1.tipo_cons,t1.descrizione,t2.id_cons_gen FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2, ".$prefix."_ele_tipo as t3 where t1.tipo_cons=t3.tipo_cons and t2.id_comune=$id_comune and t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.chiusa!='2'";
|
---|
90 | }else{
|
---|
91 | $sql = "SELECT t3.genere,t1.tipo_cons,t1.descrizione,t2.id_cons_gen FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2, ".$prefix."_ele_tipo as t3 where t1.tipo_cons=t3.tipo_cons and t2.id_comune=$id_comune and t1.id_cons_gen=t2.id_cons_gen and t2.chiusa!='2' order by t1.data_fine desc limit 0,1 ";
|
---|
92 | }
|
---|
93 | $res = $dbi->prepare("$sql");
|
---|
94 | $res->execute();
|
---|
95 |
|
---|
96 | if ($res) list($genere,$tipo_cons,$descr_cons,$id_cons_gen) = $res->fetch(PDO::FETCH_NUM);
|
---|
97 |
|
---|
98 | if ($tipo_cons!=3) $limite=0;
|
---|
99 |
|
---|
100 | $sql="SELECT t2.id_cons FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.id_comune='$id_comune'" ;
|
---|
101 | $res = $dbi->prepare("$sql");
|
---|
102 | $res->execute();
|
---|
103 |
|
---|
104 | list($id_cons) = $res->fetch(PDO::FETCH_NUM);
|
---|
105 |
|
---|
106 | $sql="SELECT t1.descrizione, t1.tipo_cons, t2.genere, t2.voto_g, t2.voto_l, t2.voto_c, t2.circo FROM ".$prefix."_ele_consultazione as t1,".$prefix."_ele_tipo as t2 where t1.tipo_cons=t2.tipo_cons and t1.id_cons_gen='$id_cons_gen' ";
|
---|
107 | $res = $dbi->prepare("$sql");
|
---|
108 | $res->execute();
|
---|
109 |
|
---|
110 | list($descr_cons,$tipo_cons,$genere,$votog,$votol,$votoc,$circo) = $res->fetch(PDO::FETCH_NUM);
|
---|
111 |
|
---|
112 | // esiste consultazione e toglie blocco nel caso non esista
|
---|
113 | $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ;
|
---|
114 | $res = $dbi->prepare("$sql");
|
---|
115 | $res->execute();
|
---|
116 |
|
---|
117 | $esiste_cons=$res->rowCount();
|
---|
118 | if($esiste_cons<='0')$blocco=0;
|
---|
119 |
|
---|
120 | //carica limite e fascia per il comune
|
---|
121 | $sql="SELECT limite FROM ".$prefix."_ele_conf where id_conf='$hondt'" ;
|
---|
122 | $res = $dbi->prepare("$sql");
|
---|
123 | $res->execute();
|
---|
124 |
|
---|
125 | list($limite) = $res->fetch(PDO::FETCH_NUM);
|
---|
126 | $sql="SELECT id_fascia FROM ".$prefix."_ele_cons_comune where id_comune='$id_comune' and id_cons='$id_cons'";
|
---|
127 | $res = $dbi->prepare("$sql");
|
---|
128 | $res->execute();
|
---|
129 |
|
---|
130 | list($fascia) = $res->fetch(PDO::FETCH_NUM);
|
---|
131 | if(!$id_circ){
|
---|
132 | $sql="SELECT id_circ FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons limit 0,1 order num_circ asc' ";
|
---|
133 | $res = $dbi->prepare("$sql");
|
---|
134 | $res->execute();
|
---|
135 |
|
---|
136 | list($id_circ) = $res->fetch(PDO::FETCH_NUM);
|
---|
137 | }
|
---|
138 |
|
---|
139 | // rss oppure foglio elettronico
|
---|
140 | if ($rss!=1 && $xls!=1 && $pdf!=1){
|
---|
141 | $index = 1;
|
---|
142 | $sql="SELECT descrizione,simbolo,cap FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ";
|
---|
143 | $res = $dbi->prepare("$sql");
|
---|
144 | $res->execute();
|
---|
145 |
|
---|
146 | list($descr_com,$simbolo,$cap) = $res->fetch(PDO::FETCH_NUM);
|
---|
147 | $descr_com =stripslashes($descr_com);
|
---|
148 | # titolo pagina 2015
|
---|
149 | include_once("modules/Elezioni/funzioni.php");
|
---|
150 | $pagetitle= pagetitle($op,$info);
|
---|
151 | $pagetitle= $descr_com." - ".$descr_cons." - ".$pagetitle;
|
---|
152 |
|
---|
153 | include("header.php");
|
---|
154 | if($csv!=1){
|
---|
155 | //include_once("modules/Elezioni/funzioni.php");
|
---|
156 | echo "<table width=\"100%\"><tr><td style=\"text-align: center;\">";
|
---|
157 | $siteistat=$id_comune;
|
---|
158 | if($simbolo!=''){
|
---|
159 | echo "<img style=\"width: 150px; height: auto;\" src=\"modules.php?name=Elezioni&file=foto&id_comune=".$id_comune."\" alt=\"logo\" />";
|
---|
160 | }else{
|
---|
161 | echo "<img src=\"modules/Elezioni/images/logo.gif\" alt=\"logo\" height=\"100\" />";
|
---|
162 | }
|
---|
163 |
|
---|
164 |
|
---|
165 |
|
---|
166 | //echo "<img src=\"modules.php?name=Elezioni&file=foto&id_comune=".$id_comune."\" alt=\"mappa\" />";
|
---|
167 | echo "</td><td> "._COMUNE."<b> $descr_com </b><br />
|
---|
168 | "._RISULTA." "._CONSULTA."<h1>$descr_cons</h1>";
|
---|
169 |
|
---|
170 | if ($circo){ // elenco per scelta circoscrizione
|
---|
171 | echo "</td></tr><tr><td colspan=\"2\" class=\"bggray\"><table class=\"table-80\"><tr><td class=\"table-main\"><form id=\"circo\" method=\"post\" action=\"modules.php\">";
|
---|
172 | $sql="SELECT id_circ,descrizione,num_circ from ".$prefix."_ele_circoscrizione where id_cons=$id_cons";
|
---|
173 | $res_sez = $dbi->prepare("$sql");
|
---|
174 | $res_sez->execute();
|
---|
175 |
|
---|
176 | $pop=$op;
|
---|
177 | if($pop=='partiti') $pop='gruppo';
|
---|
178 | echo "<input type=\"hidden\" name=\"pagina\" value=\"modules.php?name=Elezioni&op=$pop&id_cons_gen=$id_cons_gen&id_comune=$id_comune&info=$info&id_circ=\"></input>";
|
---|
179 | echo ""._SCELTA_CIR.":<b>
|
---|
180 | <select name=\"id_circ\" class=\"blu\" onChange=\"top.location.href=this.form.pagina.value+this.form.id_circ.options[this.form.id_circ.selectedIndex].value;return false\">";
|
---|
181 | while(list($id_rif,$descrizione,$num_cir)=$res_sez->fetch(PDO::FETCH_NUM)) {
|
---|
182 | if (!$id_circ) $id_circ=$id_rif;
|
---|
183 | $sel = ($id_rif == $id_circ) ? "selected=\"selected\"" : "";
|
---|
184 | echo "<option value=\"$id_rif\" $sel>";
|
---|
185 | for ($j=strlen($num_cir);$j<2;$j++) { echo " ";}
|
---|
186 | echo "$num_cir) ".$descrizione."</option>";
|
---|
187 | }
|
---|
188 | echo "</select></b></form></td></tr></table>";
|
---|
189 |
|
---|
190 | }
|
---|
191 | echo ""._DISCLAIMER."";
|
---|
192 | echo "</td></tr></table></br>";
|
---|
193 | }
|
---|
194 | }
|
---|
195 |
|
---|
196 | if (!isset($min)) $min=0;
|
---|
197 |
|
---|
198 | /************************
|
---|
199 | Funzione Menu a cascata
|
---|
200 | *************************/
|
---|
201 | function menu() {
|
---|
202 | global $hondt,$lang,$multicomune, $tema, $op, $prefix, $dbi, $offset, $min,$descr_cons,$info,$dati, $votog,$votol,$votoc,$circo, $id_cons,$tipo_cons,$genere,$descr_cons,$id_cons_gen,$id_comune,$id_circ,$minsez,$offsetsez, $limite,$hondt,$tema_on,$js,$visgralista;
|
---|
203 |
|
---|
204 | $tema=htmlentities($tema); //xss
|
---|
205 | # include menu da tema
|
---|
206 | if (file_exists("temi/$tema/menu.php")) {
|
---|
207 | include_once("temi/$tema/menu.php");
|
---|
208 | }else{
|
---|
209 | include_once("modules/Elezioni/menu.php");
|
---|
210 | }
|
---|
211 |
|
---|
212 | }
|
---|
213 |
|
---|
214 |
|
---|
215 |
|
---|
216 | /********************************************
|
---|
217 | Funzione Come si vota, link, numeri e servizi
|
---|
218 | visuallizza la stringa dei dati generali
|
---|
219 | ********************************************/
|
---|
220 |
|
---|
221 | function come($info) {
|
---|
222 | global $prefix, $dbi, $offset, $min,$id_cons,$tipo_cons,$descr_cons;
|
---|
223 |
|
---|
224 | $tab='';
|
---|
225 | if ($info=="come") $tab="_ele_come";
|
---|
226 | elseif ($info=="numeri") $tab="_ele_numeri";
|
---|
227 | elseif ($info=="servizi") $tab="_ele_servizi";
|
---|
228 | elseif ($info=="link") $tab="_ele_link";
|
---|
229 | else $tab="_ele_come";
|
---|
230 |
|
---|
231 |
|
---|
232 | global $user, $admin, $cookie, $textcolor2, $prefix, $dbi;
|
---|
233 | $sql="select mid, title, preamble, content,editimage from ".$prefix."$tab where id_cons='$id_cons' order by mid ";
|
---|
234 | $result = $dbi->prepare("$sql");
|
---|
235 | $result->execute();
|
---|
236 |
|
---|
237 | if ($result->rowCount() == 0) {
|
---|
238 | return;
|
---|
239 | } else {
|
---|
240 | while (list($mid, $title, $preamble,$content, $editimage) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
241 | if ($title != "" && $preamble != "") {
|
---|
242 |
|
---|
243 | if ($info=="link"){
|
---|
244 |
|
---|
245 | echo "<div class=\"message\">
|
---|
246 | <b><a href=\"$preamble\">$title</a></b>
|
---|
247 | $content
|
---|
248 | </div>";
|
---|
249 |
|
---|
250 | }else{
|
---|
251 | echo "<div><b>$title</b><br /></div>";
|
---|
252 |
|
---|
253 |
|
---|
254 | echo "<div class=\"message\">$preamble<br /><br /></div>";
|
---|
255 |
|
---|
256 | echo "<div class=\"message\">$content</div>";
|
---|
257 | }
|
---|
258 |
|
---|
259 | echo "<br />";
|
---|
260 |
|
---|
261 | }
|
---|
262 | }
|
---|
263 | }
|
---|
264 |
|
---|
265 | }
|
---|
266 |
|
---|
267 |
|
---|
268 |
|
---|
269 | /****************
|
---|
270 | Funzione dati Generali
|
---|
271 | visuallizza la stringa dei dati generali
|
---|
272 | ****************/
|
---|
273 |
|
---|
274 |
|
---|
275 | function dati() {
|
---|
276 | /*Funzione di visualizzazione dati generali */
|
---|
277 | global $admin, $prefix, $dbi, $offset, $votog, $votol, $votoc, $min,$id_cons,$tipo_cons,$descr_cons,$id_cons_gen,$id_comune,$genere,$id_circ;
|
---|
278 |
|
---|
279 | $sql="select * from ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ";
|
---|
280 | $res = $dbi->prepare("$sql");
|
---|
281 | $res->execute();
|
---|
282 |
|
---|
283 | $sql="select * from ".$prefix."_ele_sede where id_cons='$id_cons' ";
|
---|
284 | $ressede = $dbi->prepare("$sql");
|
---|
285 | $ressede->execute();
|
---|
286 |
|
---|
287 | $sql="select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' ";
|
---|
288 | $res3 = $dbi->prepare("$sql");
|
---|
289 | $res3->execute();
|
---|
290 |
|
---|
291 | $circo = $res->rowCount();
|
---|
292 | $sedi = $ressede->rowCount();
|
---|
293 | $sez = $res3->rowCount();
|
---|
294 |
|
---|
295 | echo "<div><b>"._DATIG."</b></div> ";
|
---|
296 | echo "<table class=\"table-80\"><tr class=\"bggray\">";
|
---|
297 | echo "<td ><b>"._AVENTI."</b></td>"
|
---|
298 | ."<td ><b>"._MASCHI."</b></td>"
|
---|
299 | ."<td ><b>"._FEMMINE."</b></td>";
|
---|
300 | if ($circo>1)
|
---|
301 | echo "<td ><b><a href=\"modules.php?name=Elezioni&op=circo&id_cons_gen=$id_cons_gen&id_comune=$id_comune\">"._CIRCS."</a></b></td>";
|
---|
302 | else
|
---|
303 | echo "<td ><b><a href=\"modules.php?name=Elezioni&op=circo&id_cons_gen=$id_cons_gen&id_comune=$id_comune\">"._SEDI."</a></b></td>";
|
---|
304 | echo "<td><b><a href=\"modules.php?name=Elezioni&op=sezione&id_cons_gen=$id_cons_gen&id_comune=$id_comune\">"._SEZIONI."</a></b></td>"
|
---|
305 | ."<td ><b><a href=\"modules.php?name=Elezioni&op=gruppo&id_cons_gen=$id_cons_gen&id_comune=$id_comune&id_circ=$id_circ\">"._GRUPPI."</a></b></td>";
|
---|
306 |
|
---|
307 |
|
---|
308 |
|
---|
309 |
|
---|
310 |
|
---|
311 | // camera e senato con raggruppamenti
|
---|
312 | $sql="select * from ".$prefix."_ele_lista where id_cons='$id_cons' ";
|
---|
313 | $res3 = $dbi->prepare("$sql");
|
---|
314 | $res3->execute();
|
---|
315 |
|
---|
316 | $liste = $res3->rowCount();
|
---|
317 | if($liste and $genere!=4){
|
---|
318 | echo "<td><b><a href=\"modules.php?name=Elezioni&op=liste&id_cons_gen=$id_cons_gen&id_comune=$id_comune\">"._LISTE."</a></b></td>";
|
---|
319 | }
|
---|
320 |
|
---|
321 |
|
---|
322 |
|
---|
323 | $candi=0;
|
---|
324 |
|
---|
325 | // se non referendum
|
---|
326 | if ($genere>0 and !$votoc){
|
---|
327 | echo "<td><b><a href=\"modules.php?name=Elezioni&op=candi&id_cons_gen=$id_cons_gen&id_comune=$id_comune\">"._CANDIDATI."</a></b></td>";
|
---|
328 | $sql="select id_cons from ".$prefix."_ele_candidati where id_cons='$id_cons' ";
|
---|
329 | $res1 = $dbi->prepare("$sql");
|
---|
330 | $res1->execute();
|
---|
331 |
|
---|
332 | $candi = $res1->rowCount();
|
---|
333 | }
|
---|
334 | // se non europee (non liste e candidati)
|
---|
335 | if ($genere!=4){
|
---|
336 | $sql="select id_cons from ".$prefix."_ele_gruppo where id_cons='$id_cons' ";
|
---|
337 | }else{
|
---|
338 | $sql="select id_cons from ".$prefix."_ele_lista where id_cons='$id_cons' ";
|
---|
339 | }
|
---|
340 | $res2 = $dbi->prepare("$sql");
|
---|
341 | $res2->execute();
|
---|
342 | $gruppo = $res2->rowCount();
|
---|
343 |
|
---|
344 | if($circo==1) $circo=$sedi;
|
---|
345 | $sql="select sum(maschi),sum(femmine), sum(maschi+femmine) from ".$prefix."_ele_sezioni where id_cons=$id_cons";
|
---|
346 | $res4 = $dbi->prepare("$sql");
|
---|
347 | $res4->execute();
|
---|
348 |
|
---|
349 | if($res4) list($maschi,$femmine,$tot) = $res4->fetch(PDO::FETCH_NUM);
|
---|
350 | echo "</tr><tr class=\"bggray2\">"
|
---|
351 |
|
---|
352 | ."<td><b>$tot</b>"
|
---|
353 | ."</td><td><b>$maschi</b>"
|
---|
354 | ."</td><td><b>$femmine</b>"
|
---|
355 | ."</td><td><b>$circo</b>"
|
---|
356 | ."</td><td><b>$sez</b>"
|
---|
357 | ."</td><td><b>$gruppo</b>";
|
---|
358 | // if ($tipo_cons >9) echo"</td><td><b>$liste</b>";
|
---|
359 | if ($liste and $genere!=4) echo"</td><td><b>$liste</b>";
|
---|
360 |
|
---|
361 | if ($genere>2 && !$votoc) echo"</td><td><b>$candi</b>";
|
---|
362 |
|
---|
363 | echo "</td></tr></table>";
|
---|
364 | //CloseTable();
|
---|
365 | }
|
---|
366 | //////////////////////////////////////////////////////////////
|
---|
367 | // votanti
|
---|
368 | //////////////////////////////////////////////////////////////
|
---|
369 |
|
---|
370 |
|
---|
371 |
|
---|
372 | function circo() {
|
---|
373 |
|
---|
374 | /******************************************************/
|
---|
375 | /*Funzione di visualizzazione sede */
|
---|
376 | /*****************************************************/
|
---|
377 | global $admin, $prefix, $dbi, $offset, $min,$id_cons,$file,$id_cons_gen,$id_comune ,$prev,$next;
|
---|
378 | $sql="SELECT * FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ";
|
---|
379 | $res = $dbi->prepare("$sql");
|
---|
380 | $res->execute();
|
---|
381 |
|
---|
382 | $max = $res->rowCount();
|
---|
383 |
|
---|
384 | //OpenTable();
|
---|
385 |
|
---|
386 | dati();
|
---|
387 |
|
---|
388 |
|
---|
389 | $offset=10;
|
---|
390 | if (!isset($min)) $min=0;
|
---|
391 | $go="circo";
|
---|
392 |
|
---|
393 | $sql="select * from ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ORDER BY num_circ
|
---|
394 | LIMIT $min,$offset";
|
---|
395 | $result = $dbi->prepare("$sql");
|
---|
396 | $result->execute();
|
---|
397 |
|
---|
398 | $numcirc=$result->rowCount();
|
---|
399 | if ($numcirc>1){
|
---|
400 | echo "<div><b>"._CIRCS."</b></div><br /><br />
|
---|
401 | <table class=\"table-80\"><tr class=\"bggray\">"
|
---|
402 | ."<td ><b>"._NUM."</b></td>"
|
---|
403 | ."<td ><b>"._CIRCO."</b></td>"
|
---|
404 | ."<td ><b>"._INDIRIZZO."</b></td>"
|
---|
405 | ."<td><b>"._TEL."</b></td></tr>";
|
---|
406 | }else{
|
---|
407 | echo "<div><b></b></div><br /><br />
|
---|
408 | <table class=\"table-80\"><tr class=\"bggray\">"
|
---|
409 | ."<td ><b>"._INDIRIZZO."</b></td>"
|
---|
410 | ."<td><b>"._TEL."</b></td></tr>";
|
---|
411 | }
|
---|
412 |
|
---|
413 | while(list($id_cons2,$id_circ,$num_circ,$descr_circ) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
414 | #if($numcirc==1) {$descr_circ=''; $num_circ='';}
|
---|
415 | if (!($num_circ===0)) {
|
---|
416 |
|
---|
417 | echo "<tr class=\"bggray3\">";
|
---|
418 | if ($numcirc>1) {
|
---|
419 | echo "<td><b>$num_circ</b>"
|
---|
420 | ."</td><td><b>";
|
---|
421 | echo "<a href=\"modules.php?name=Elezioni&op=sezione&id_cons_gen=$id_cons_gen&id_comune=$id_comune&id_circ=$id_circ&descr_circ=$descr_circ\">$descr_circ</a></b></td>";
|
---|
422 | }
|
---|
423 |
|
---|
424 | // dati sede
|
---|
425 | $sql="select id_sede,indirizzo,telefono1,telefono2, mappa, filemappa from ".$prefix."_ele_sede where id_cons='$id_cons' and id_circ='$id_circ'";
|
---|
426 | $result1 = $dbi->prepare("$sql");
|
---|
427 | $result1->execute();
|
---|
428 |
|
---|
429 | $righe=$result1->rowCount();$i=0;
|
---|
430 | while(list($id_sede,$indir,$tel1,$tel2,$mappa,$filemappa)=$result1->fetch(PDO::FETCH_NUM)){
|
---|
431 |
|
---|
432 | $i++;
|
---|
433 | echo "<td><b><a href=\"modules.php?name=Elezioni&op=sezione&id_cons_gen=$id_cons_gen&id_comune=$id_comune&id_sede=$id_sede\">$indir</a></b>"
|
---|
434 | ."</td><td><b>$tel1 </b></td><td><b> $tel2</b></td></tr>";
|
---|
435 |
|
---|
436 | if ($i<$righe) echo"<tr class=\"bggray3\">";
|
---|
437 | if ($numcirc>1) echo "<td></td><td></td>";
|
---|
438 |
|
---|
439 | }
|
---|
440 | }
|
---|
441 | }
|
---|
442 | echo "</table>";
|
---|
443 |
|
---|
444 | page($id_cons_gen,$go,$max,$min,$prev,$next,$offset,$file);
|
---|
445 |
|
---|
446 | //CloseTable();
|
---|
447 | }
|
---|
448 |
|
---|
449 | /******************************************************/
|
---|
450 | /*Funzione di visualizzazione globale sezioni */
|
---|
451 | /*****************************************************/
|
---|
452 |
|
---|
453 | function sezione() {
|
---|
454 | global $admin, $prefix, $dbi, $offset, $min,$votog,$circo, $id_cons_gen,$id_circ,$descr_circ,$id_cons,$file,$prev,$next,$id_comune,$googlemaps;
|
---|
455 | global $descr_com,$cap;
|
---|
456 | if(!isset($_GET['id_circ'])) unset($id_circ);
|
---|
457 | dati();
|
---|
458 | $totali_t=0;$maschi_t=0;$femmine_t=0;
|
---|
459 | $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
|
---|
460 | //mappa
|
---|
461 | if (isset($param['id_sede'])) $id_sede=intval($param['id_sede']); else $id_sede='0';
|
---|
462 | if ($id_sede!='0' && $googlemaps!='1'){
|
---|
463 | $sql="SELECT indirizzo FROM ".$prefix."_ele_sede where id_sede='$id_sede'";
|
---|
464 | $res1 = $dbi->prepare("$sql");
|
---|
465 | $res1->execute();
|
---|
466 | list($ind) = $res1->fetch(PDO::FETCH_NUM);
|
---|
467 | $indir=str_replace(" ","+",$ind.",+".$descr_com.",+".$cap);
|
---|
468 | echo "<br /><div><a href=\"https://maps.google.it/maps/place/".$indir."\"><img src=\"modules.php?name=Elezioni&file=foto&id_sede=".$id_sede."\" alt=\"mappa\" /></a></div>";
|
---|
469 | }elseif($id_sede!='0' && $googlemaps=='1'){
|
---|
470 | $mappa=googlemaps(); //echo $mappa;
|
---|
471 | echo "
|
---|
472 | <div id=\"map\" style=\"width: 400px; height: 400px; margin: 0 auto; position: relative; top:0; overflow: hidden;\"></div>
|
---|
473 | ";
|
---|
474 | // echo '<div id="map"></div>';
|
---|
475 | }
|
---|
476 |
|
---|
477 | $offset=15;
|
---|
478 | if (!isset($min)) $min=0;
|
---|
479 | if (!isset($id_circ)) $id_circ=0;
|
---|
480 | $go="sezione";
|
---|
481 | $sql="SELECT descrizione FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons'";
|
---|
482 | $res2 = $dbi->prepare("$sql");
|
---|
483 | $res2->execute();
|
---|
484 |
|
---|
485 | $numcirc = $res2->rowCount();
|
---|
486 | $sql="SELECT descrizione FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' AND id_circ='$id_circ' ";
|
---|
487 | $res2 = $dbi->prepare("$sql");
|
---|
488 | $res2->execute();
|
---|
489 |
|
---|
490 | list($descr_circ) = $res2->fetch(PDO::FETCH_NUM);
|
---|
491 | if($numcirc>1){
|
---|
492 | echo "<div><b>"._SEZIONI." ";
|
---|
493 | if ($id_circ) echo "di $descr_circ";
|
---|
494 | if ($id_sede) echo _SINGOLA;
|
---|
495 | echo "</b></div>";
|
---|
496 | }
|
---|
497 | echo "<br />"
|
---|
498 | ."<table class=\"table-80\"><tr class=\"bggray\">"
|
---|
499 | ."<td class=\"td-5\"><b>"._NUM."</b></td>"
|
---|
500 | ."<td ><b>"._INDIRIZZO."</b></td>"
|
---|
501 | ."<td class=\"td-5\"><b>"._MASCHI."</b></td>"
|
---|
502 | ."<td class=\"td-5\"><b>"._FEMMINE."</b></td>"
|
---|
503 | ."<td><b>"._TOTS." "._AVENTI."</b></td></tr>";
|
---|
504 | // link alle sedi
|
---|
505 |
|
---|
506 | // link alle circoscrizioni
|
---|
507 |
|
---|
508 | if ($id_circ) {
|
---|
509 |
|
---|
510 | $sql="SELECT id_sede FROM ".$prefix."_ele_sede where id_cons='$id_cons' and id_circ='$id_circ' ";
|
---|
511 | $res1 = $dbi->prepare("$sql");
|
---|
512 | $res1->execute();
|
---|
513 |
|
---|
514 | //$max = mysql_num_rows($res);
|
---|
515 | $i=0;// n. sezioni x circo
|
---|
516 | while(list($id_sede) = $res1->fetch(PDO::FETCH_NUM)){
|
---|
517 |
|
---|
518 | $circos=" AND id_sede='$id_sede'";
|
---|
519 | $sql="SELECT * FROM ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos ";
|
---|
520 | $res = $dbi->prepare("$sql");
|
---|
521 | $res->execute();
|
---|
522 |
|
---|
523 | //$tot_sez = mysql_num_rows($res);
|
---|
524 | $sql="select id_cons,id_sez,id_sede,num_sez, maschi, femmine from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos ORDER BY num_sez LIMIT $min,$offset";
|
---|
525 | $result = $dbi->prepare("$sql");
|
---|
526 | $result->execute();
|
---|
527 |
|
---|
528 |
|
---|
529 | while(list($id_cons2,$id_sez,$id_sede,$num_sez, $maschi, $femmine) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
530 | // dati circoscrizione
|
---|
531 | $i++;
|
---|
532 | $sql="select indirizzo from ".$prefix."_ele_sede where id_sede='$id_sede'";
|
---|
533 | $result1 = $dbi->prepare("$sql");
|
---|
534 | $result1->execute();
|
---|
535 |
|
---|
536 | list($indir)=$result1->fetch(PDO::FETCH_NUM);
|
---|
537 |
|
---|
538 | $totali=$maschi+$femmine;
|
---|
539 | $totali_t=$totali_t+$totali;
|
---|
540 | $maschi_t=$maschi_t+$maschi;
|
---|
541 | $femmine_t=$femmine_t+$femmine;
|
---|
542 | echo "<tr><td><b>$num_sez</b>"
|
---|
543 | ."</td><td><b><a href=\"modules.php?name=Elezioni&op=sezione&id_cons_gen=$id_cons_gen&id_comune=$id_comune&id_sede=$id_sede\">$indir</a></b>"
|
---|
544 | ."</td><td >$maschi"
|
---|
545 | ."</td><td >$femmine"
|
---|
546 | ."</td><td ><b>$totali</b></td></tr>";
|
---|
547 | }
|
---|
548 |
|
---|
549 | }
|
---|
550 | echo "<tr class=\"bggray2\" ><td>"._SEZIONI."<br />n. $i</td>
|
---|
551 | <td><b>"._TOT."<br />$descr_circ</b>
|
---|
552 | </td><td ><b>"._MASCHI."<br /><span class=\"red\">$maschi_t</span></b>
|
---|
553 | </td><td ><b>"._FEMMINE."<br /><span class=\"red\">$femmine_t</span></b></td>
|
---|
554 | <td ><b>"._TOTS."<br /><span class=\"red\">$totali_t</span></b></td></tr>";
|
---|
555 | echo "</table></center>";
|
---|
556 | }else{
|
---|
557 | $circos='';
|
---|
558 | if ($id_sede) $circos=" AND id_sede='$id_sede'";
|
---|
559 |
|
---|
560 | $sql="SELECT * FROM ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos ";
|
---|
561 | $res = $dbi->prepare("$sql");
|
---|
562 | $res->execute();
|
---|
563 |
|
---|
564 | $max = $res->rowCount();
|
---|
565 | $sql="select id_cons,id_sez,id_sede,num_sez, maschi, femmine from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos ORDER BY num_sez LIMIT $min,$offset";
|
---|
566 | $result = $dbi->prepare("$sql");
|
---|
567 | $result->execute();
|
---|
568 |
|
---|
569 |
|
---|
570 | while(list($id_cons2,$id_sez,$id_sed,$num_sez, $maschi, $femmine) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
571 |
|
---|
572 | // dati circoscrizione
|
---|
573 | $sql="select indirizzo from ".$prefix."_ele_sede where id_sede='$id_sed'";
|
---|
574 | $result1 = $dbi->prepare("$sql");
|
---|
575 | $result1->execute();
|
---|
576 |
|
---|
577 | list($indir)=$result1->fetch(PDO::FETCH_NUM);
|
---|
578 | $totali=$maschi+$femmine;
|
---|
579 | $totali_t=$totali_t+$totali;
|
---|
580 | $maschi_t=$maschi_t+$maschi;
|
---|
581 | $femmine_t=$femmine_t+$femmine;
|
---|
582 | echo "<tr class=\"bggray2\"><td><b>$num_sez</b>"
|
---|
583 | ."</td><td><b><a href=\"modules.php?name=Elezioni&op=sezione&id_cons_gen=$id_cons_gen&id_comune=$id_comune&id_sede=$id_sed\"><img class=\"nobordo\" src=\"modules/Elezioni/images/mappa.gif\" style=\"text-align:left;\" alt=\"mappa\"/>
|
---|
584 | $indir</a></b>"
|
---|
585 | ."</td><td>$maschi"
|
---|
586 | ."</td><td>$femmine"
|
---|
587 | ."</td><td><b>$totali</b></td></tr>";
|
---|
588 | }
|
---|
589 | if($id_sede)echo "<tr class=\"bggray\"><td><br /><br /></td>
|
---|
590 | <td><b>"._TOTS."<br />$indir</b>
|
---|
591 | </td><td ><b>"._MASCHI."<br /><span class=\"red\">$maschi_t</span></b>
|
---|
592 | </td><td ><b>"._FEMMINE."<br /><span class=\"red\">$femmine_t</span></b></td>
|
---|
593 | <td ><b>"._TOTS."<br /><span class=\"red\">$totali_t</span></b></td></tr>";
|
---|
594 |
|
---|
595 | echo "</table>";
|
---|
596 |
|
---|
597 | }
|
---|
598 | if(!isset($max)) $max=0;
|
---|
599 | page($id_cons_gen,$go,$max,$min,$prev,$next,$offset,$file);
|
---|
600 |
|
---|
601 |
|
---|
602 | //CloseTable();
|
---|
603 | }
|
---|
604 |
|
---|
605 |
|
---|
606 |
|
---|
607 | /******************************************************/
|
---|
608 | /*Funzione di visualizzazione globale gruppo */
|
---|
609 | /*****************************************************/
|
---|
610 |
|
---|
611 | function gruppo() {
|
---|
612 | global $fascia, $limite, $admin, $prefix, $dbi, $offset, $min, $id_cons_gen,$genere, $id_cons,$tipo_cons,$file,$prev,$next,$id_circ,$id_comune,$descr_circ,$id_sez,$votog,$votol,$circo,$limite;
|
---|
613 | //dati();
|
---|
614 | // definizione variabile per button 'ok' nei form
|
---|
615 | $button="<input name=\"vai\" type=\"image\" src=\"modules/Elezioni/images/ok2.jpg\" alt=\"ok\" title=\"ok\" />";
|
---|
616 |
|
---|
617 | // numero sezioni scrutinate sul gruppo
|
---|
618 | // Verificare per la circoscrizione
|
---|
619 | if ($genere==0) {$tab="ref";}else{$tab="gruppo";}
|
---|
620 | if ($votog or $genere==4) {$tab="lista";}else{$tab="gruppo";}
|
---|
621 | if($circo){
|
---|
622 | if(!$id_circ){
|
---|
623 | $sql="select id_circ from ".$prefix."_ele_circoscrizione where id_cons='$id_cons' limit 0,1";
|
---|
624 | $res = $dbi->prepare("$sql");
|
---|
625 | $res->execute();
|
---|
626 |
|
---|
627 | list($id_circ)=$res->fetch(PDO::FETCH_NUM);
|
---|
628 | }
|
---|
629 | $sql="select t1.id_sez,sum(t1.voti) from ".$prefix."_ele_voti_$tab as t1, ".$prefix."_ele_$tab as t2 where t1.id_$tab=t2.id_$tab and t1.id_cons='$id_cons' and t2.id_circ='$id_circ' group by t1.id_sez";
|
---|
630 | }else $sql="select id_sez from ".$prefix."_ele_voti_".$tab." where id_cons='$id_cons' group by id_sez ";
|
---|
631 | $res = $dbi->prepare("$sql");
|
---|
632 | $res->execute();
|
---|
633 |
|
---|
634 | $numero=$res->rowCount();
|
---|
635 | if($circo) $circos="and id_circ='$id_circ'"; else $circos='';
|
---|
636 |
|
---|
637 | if($circo) $sql="select * from ".$prefix."_ele_sezioni as t1, ".$prefix."_ele_sede as t2 where t1.id_sede=t2.id_sede and t1.id_cons='$id_cons' and t2.id_circ=$id_circ";
|
---|
638 | else $sql="select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos ";
|
---|
639 | $res = $dbi->prepare("$sql");
|
---|
640 | $res->execute();
|
---|
641 |
|
---|
642 | $sezioni=$res->rowCount();
|
---|
643 | if ($numero!=0) {
|
---|
644 | # echo "<div><h2>"._SEZSCRU." $numero "._SU." $sezioni</h2></div>";
|
---|
645 |
|
---|
646 | ####################### inserimento scrutinio in percentuale -- per i gruppi
|
---|
647 | if($genere==0)
|
---|
648 | $sql="SELECT COUNT(0) FROM ".$prefix."_ele_voti_ref WHERE id_cons ='$id_cons' group by id_sez";
|
---|
649 | else
|
---|
650 | $sql="SELECT COUNT(0) FROM ".$prefix."_ele_voti_lista WHERE id_cons ='$id_cons' group by id_sez";
|
---|
651 | $resn = $dbi->prepare("$sql");
|
---|
652 | $resn->execute();
|
---|
653 |
|
---|
654 | $NicolaSezScrut = $resn->rowCount();
|
---|
655 | $sql="SELECT COUNT( id_sez ) FROM ".$prefix."_ele_sezioni WHERE id_cons ='$id_cons'";
|
---|
656 | $res = $dbi->prepare("$sql");
|
---|
657 | $res->execute();
|
---|
658 |
|
---|
659 | $NicolaSezTot = $res->fetch(PDO::FETCH_NUM);
|
---|
660 |
|
---|
661 | if($genere==0) $sql="select sum(si+no), sum(bianchi+nulli+contestati) from ".$prefix."_ele_voti_ref where id_cons='$id_cons' group by id_gruppo";
|
---|
662 | else $sql="select sum(validi),sum(nulli+bianchi+contestati+voti_nulli) from ".$prefix."_ele_sezioni where id_cons='$id_cons'";
|
---|
663 | $resperc = $dbi->prepare("$sql");
|
---|
664 | $resperc->execute();
|
---|
665 |
|
---|
666 | list($scruvalidi,$scrunulli)=$resperc->fetch(PDO::FETCH_NUM);
|
---|
667 | $sql="select sum(voti_complessivi) from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' group by data,orario order by data desc, orario desc limit 0,1 ";
|
---|
668 | $resperc = $dbi->prepare("$sql");
|
---|
669 | $resperc->execute();
|
---|
670 |
|
---|
671 | list($totschede)=$resperc->fetch(PDO::FETCH_NUM);
|
---|
672 | if($totschede)
|
---|
673 | $grpercscru=number_format(($scruvalidi+$scrunulli)*100/$totschede,2);
|
---|
674 | else $grpercscru=0;
|
---|
675 | # echo "<div><h2> $sql2 Dati riferiti a $numero "._SEZ." "._SU." $sezioni</h2></div>";
|
---|
676 | echo "<table border=\"2\"><tr><td style=\"text-align:center; \">";
|
---|
677 | if(!$votog and $genere!=4){ echo "<h2><b>"._GRUPPO.": </b>";
|
---|
678 | echo "</br>Scrutinate ".($scruvalidi+$scrunulli)." schede su $totschede ($grpercscru %) <br></h2>";
|
---|
679 | }
|
---|
680 | #$numero sezioni su $sezioni<br> le schede scrutinate sono: $grpercscru %
|
---|
681 | # echo "<div><h2> $numero "._SEZSCRU." ("._ALPERC." $grpercscru %) "._SU." $sezioni</h2></div>";
|
---|
682 | ####################### inserimento scrutinio in percentuale -- per le liste
|
---|
683 | if ($genere>2 && ($fascia>$limite or !$limite)){
|
---|
684 |
|
---|
685 | if($genere==4 or ($genere==5 and $votog)) $sql="select sum(validi),sum(nulli+bianchi+voti_nulli+contestati) from ".$prefix."_ele_sezioni where id_cons='$id_cons'";
|
---|
686 | else $sql="select sum(validi_lista),sum(nulli+bianchi+voti_nulli+contestati+solo_gruppo+voti_nulli_lista+contestati_lista) from ".$prefix."_ele_sezioni where id_cons='$id_cons'";
|
---|
687 | $resperc = $dbi->prepare("$sql");
|
---|
688 | $resperc->execute();
|
---|
689 | list($scruvalidi,$scrunulli)=$resperc->fetch(PDO::FETCH_NUM);
|
---|
690 | if($totschede)
|
---|
691 | $listpercscru=number_format(($scruvalidi+$scrunulli)*100/$totschede,2);
|
---|
692 | else $listpercscru=0;
|
---|
693 | $listtotschede=$totschede;
|
---|
694 | $listtotvoti=($scruvalidi+$scrunulli);
|
---|
695 | if($genere!=0 && $genere!=3)
|
---|
696 | echo "<h6>Voti alle Liste: pervenute: $NicolaSezScrut sezioni su $NicolaSezTot[0] <br/> Scrutinate $listtotvoti schede su $listtotschede ($listpercscru %)</h6>";
|
---|
697 | # echo "<h6>Voti alle Liste: Scrutinate $listtotvoti schede su $listtotschede ($listpercscru %)</h6>";
|
---|
698 | }
|
---|
699 | echo "</td></tr></table> ";
|
---|
700 | ####################### 725
|
---|
701 |
|
---|
702 | }
|
---|
703 |
|
---|
704 |
|
---|
705 |
|
---|
706 | $offset=15;
|
---|
707 | if (!isset($min)) $min=0;
|
---|
708 | $go="gruppo";
|
---|
709 | if(!$votog and $genere!=4) echo "<div><h2><b>"._GRUPPO." </b><br /></h2></div>";
|
---|
710 | if ($tipo_cons==18 or $tipo_cons==19) echo "<div><b>I voti di lista subiranno una integrazione al termine delle operazioni sul collegio con la ripartizione pro-quota derivata dai voti sull'uninominale</b></div>";
|
---|
711 |
|
---|
712 | if ($genere!=4){
|
---|
713 | $circos='';
|
---|
714 | $circol='';
|
---|
715 | // numero sezioni scrutinate per lista
|
---|
716 | if ($circo){$circos="and id_circ='$id_circ'";$circol="and t2.id_circ='$id_circ'";}
|
---|
717 |
|
---|
718 |
|
---|
719 |
|
---|
720 | $sql="select t1.id_sez,sum(t1.voti) from ".$prefix."_ele_voti_lista as t1, ".$prefix."_ele_lista as t2 where t1.id_lista=t2.id_lista and t1.id_cons='$id_cons' $circol group by t1.id_sez";
|
---|
721 | $res_num_list = $dbi->prepare("$sql");
|
---|
722 | $res_num_list->execute();
|
---|
723 |
|
---|
724 | //$res_num_list = mysql_query("select * from ".$prefix."_ele_voti_lista where id_cons='$id_cons' group by id_sez ",$dbi);
|
---|
725 | $numero_l=$res_num_list->rowCount();
|
---|
726 | // verifica delle sezioni in relazione ai candidati (comuni >=15000) non c'e' il voto di lista e quindi ci metto se scrutinate le preferenze sulla lista [$numero_c] - 5/5/2009
|
---|
727 | $sql="select id_sez from ".$prefix."_ele_voti_candidati where id_cons='$id_cons' group by id_sez ";
|
---|
728 | $res_num_list = $dbi->prepare("$sql");
|
---|
729 | $res_num_list->execute();
|
---|
730 |
|
---|
731 | $numero_c=$res_num_list->rowCount();
|
---|
732 |
|
---|
733 | $sezioni_l=$sezioni;
|
---|
734 |
|
---|
735 |
|
---|
736 | $sql="SELECT * FROM ".$prefix."_ele_gruppo where id_cons='$id_cons' $circos ";
|
---|
737 | $res = $dbi->prepare("$sql");
|
---|
738 | $res->execute();
|
---|
739 |
|
---|
740 | $max = $res->rowCount();
|
---|
741 | $t_circos="";
|
---|
742 | if (!$votog){
|
---|
743 | if ($circo) $t_circos=" and t2.id_circ='$id_circ'";
|
---|
744 | $sql="select sum(t1.voti) from ".$prefix."_ele_voti_gruppo as t1 , ".$prefix."_ele_gruppo as t2 where t1.id_gruppo=t2.id_gruppo and t1.id_cons='$id_cons' $t_circos ";
|
---|
745 |
|
---|
746 | // sommatoria dei voti di lista per camera e senato dal 2006 per coalizioni-->byluc
|
---|
747 | }else{
|
---|
748 | $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons'";
|
---|
749 | }
|
---|
750 | $res_pres_tutti = $dbi->prepare("$sql");
|
---|
751 | $res_pres_tutti->execute();
|
---|
752 |
|
---|
753 | list($voti_pres_tutti) = $res_pres_tutti->fetch(PDO::FETCH_NUM);
|
---|
754 | ######gestione percentuali
|
---|
755 | $arval=array();$arperc=array();
|
---|
756 | if ($genere>0){ // no referendum
|
---|
757 | if (!$votog){ // no camere e senato per coalizioni
|
---|
758 | $sql="select sum(t1.voti),t1.id_gruppo from ".$prefix."_ele_voti_gruppo as t1 , ".$prefix."_ele_gruppo as t2 where t1.id_gruppo=t2.id_gruppo and t1.id_cons='$id_cons' $t_circos group by id_gruppo";
|
---|
759 |
|
---|
760 | }else{ // sommatoria voti lista per coalizione per camere e senato
|
---|
761 | $sql="select sum(t1.voti),t2.id_gruppo from ".$prefix."_ele_voti_lista as t1 , ".$prefix."_ele_lista as t2 where t1.id_lista=t2.id_lista and t1.id_cons='$id_cons' $t_circos group by t2.id_gruppo";
|
---|
762 | }
|
---|
763 | $res_presidente = $dbi->prepare("$sql");
|
---|
764 | $res_presidente->execute();
|
---|
765 | while(list($voti_pres,$id_gruppo2) = $res_presidente->fetch(PDO::FETCH_NUM)) {
|
---|
766 | $arval[$id_gruppo2]=$voti_pres;
|
---|
767 | }
|
---|
768 | $arperc=arrayperc($arval,$voti_pres_tutti);
|
---|
769 |
|
---|
770 | }
|
---|
771 | #######
|
---|
772 | $sql="select id_cons ,id_gruppo ,num_gruppo, descrizione, prognome from ".$prefix."_ele_gruppo where id_cons='$id_cons' $circos ORDER BY num_gruppo LIMIT $min,$offset";
|
---|
773 | $result = $dbi->prepare("$sql");
|
---|
774 | $result->execute();
|
---|
775 |
|
---|
776 | while(list($id_cons2,$id_gruppo2,$num_gruppo, $descr_gruppo,$prognome) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
777 | if ($num_gruppo!=0) {
|
---|
778 | echo "<table class=\"table-80\">
|
---|
779 | <tr>"
|
---|
780 | ."<td class=\"td-5\"><b>"._NUM."</b></td>"
|
---|
781 | ."<td class=\"bggray\"><b>"._DESCR."</b></td>"
|
---|
782 | ."<td class=\"td-5\"><b>"._SIMBOLO."</b></td>
|
---|
783 | </tr>";
|
---|
784 | if ($genere>0){ // no referendum
|
---|
785 | if (!$votog){ // no camere e senato per coalizioni
|
---|
786 | $sql="select sum(voti) from ".$prefix."_ele_voti_gruppo where id_cons='$id_cons' and id_gruppo='$id_gruppo2'";
|
---|
787 | }else{ // sommatoria voti lista per coalizione per camere e senato
|
---|
788 | $sql="select sum(t1.voti) from ".$prefix."_ele_voti_lista as t1 , ".$prefix."_ele_lista as t2 where t1.id_lista=t2.id_lista and t1.id_cons='$id_cons' and t2.id_gruppo='$id_gruppo2'";
|
---|
789 | }
|
---|
790 | $res_presidente = $dbi->prepare("$sql");
|
---|
791 | $res_presidente->execute();
|
---|
792 | list($voti_pres) = $res_presidente->fetch(PDO::FETCH_NUM);
|
---|
793 | if ($voti_pres_tutti!=0){
|
---|
794 | $perc_pres=number_format($arperc[$id_gruppo2],2);
|
---|
795 | $var1="<h2>voti: $voti_pres <span class=\"redbig\"> $perc_pres </span>%</h2>";
|
---|
796 | }else {$var1="";}
|
---|
797 | }else{ //referendum
|
---|
798 | $sql="select sum(si),sum(no),sum(validi),sum(bianchi),sum(nulli),sum(contestati) from ".$prefix."_ele_voti_ref where id_cons='$id_cons' and id_gruppo='$id_gruppo2'";
|
---|
799 | $res_ref = $dbi->prepare("$sql");
|
---|
800 | $res_ref->execute();
|
---|
801 | if($res_ref->rowCount())
|
---|
802 | list($voti_si,$voti_no,$validi,$bianchi,$nulli,$conte) = $res_ref->fetch(PDO::FETCH_NUM);
|
---|
803 | if(($voti_si+$voti_no+$validi+$bianchi+$nulli+$conte)>0)
|
---|
804 | {
|
---|
805 | $sql="select t3.orario,t3.data from ".$prefix."_ele_rilaff as t1 left join ".$prefix."_ele_cons_comune as t2 on t1.id_cons_gen=t2.id_cons_gen left join ".$prefix."_ele_voti_parziale as t3 on t2.id_cons=t3.id_cons where t1.id_cons_gen='$id_cons_gen' and t2.id_cons='$id_cons' order by t3.data desc, t3.orario desc limit 0,1";
|
---|
806 | $aff = $dbi->prepare("$sql");
|
---|
807 | $aff->execute();
|
---|
808 | list($ora,$data) = $aff->fetch(PDO::FETCH_NUM);
|
---|
809 | $sql="select sum(voti_complessivi) from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' and orario='$ora' and data='$data' and id_gruppo='$id_gruppo2'";
|
---|
810 | $tot_rel = $dbi->prepare("$sql");
|
---|
811 | $tot_rel->execute();
|
---|
812 | list($tot_relativo) = $tot_rel->fetch(PDO::FETCH_NUM);
|
---|
813 | }else{
|
---|
814 | $voti_si=0;$voti_no=0;$validi=0;$bianchi=0;$nulli=0;$conte=0;$tot_relativo=0;
|
---|
815 | }
|
---|
816 | // totale assoluto
|
---|
817 | $sql="select sum(maschi+femmine) from ".$prefix."_ele_sezioni where id_cons='$id_cons'";
|
---|
818 | $tot_ass = $dbi->prepare("$sql");
|
---|
819 | $tot_ass->execute();
|
---|
820 |
|
---|
821 | list($tot_assoluto) = $tot_ass->fetch(PDO::FETCH_NUM);
|
---|
822 | // controlli del 15 giugno 2009
|
---|
823 | if($tot_assoluto)
|
---|
824 | $perc_tot=number_format(($tot_relativo*100)/$tot_assoluto,2);
|
---|
825 | else $perc_tot=0;
|
---|
826 |
|
---|
827 | $tot_ref=$voti_si+$voti_no;
|
---|
828 | if($tot_ref){
|
---|
829 | $perc_si=number_format(($voti_si*100)/$tot_ref,2);
|
---|
830 | $perc_no=number_format(($voti_no*100)/$tot_ref,2);
|
---|
831 | }else{ $perc_si=0;$perc_no=0;}
|
---|
832 | $var1="<table class=\"table-80\" style=\"text-align: center;\">";
|
---|
833 | if(isset($ora)){
|
---|
834 | list ($ore,$minuti,$secondi)=explode(':',$ora);
|
---|
835 | $var1.= "<tr>
|
---|
836 | <td class=\"redbig\">
|
---|
837 | <h2>"._PERC_ASS." $ore,$minuti:<span class=\"redbig\"> $perc_tot% </span></h2></td>
|
---|
838 | </tr>";
|
---|
839 | }
|
---|
840 | $var1 .="<tr>
|
---|
841 | <td><h1>SI: $voti_si <span class=\"redbig\"> $perc_si </span>%</h1></td>
|
---|
842 | </tr>
|
---|
843 | <tr>
|
---|
844 | <td><h1>NO: $voti_no<span class=\"redbig\"> $perc_no </span>%
|
---|
845 | </h1></td>
|
---|
846 | </tr>
|
---|
847 | </table>";
|
---|
848 | }
|
---|
849 | echo "<tr>
|
---|
850 | <td class=\"bggray\"><h1><b>$num_gruppo</b></h1></td>
|
---|
851 | <td class=\"table-main\" style=\"text-align: left;\"><h1>$descr_gruppo</h1> $var1</td>";
|
---|
852 | if($tipo_cons!=2 and $prognome)
|
---|
853 | echo "<td onmouseover=\"this.style.cursor='pointer';\" onclick=\"javascript:window.open('modules.php?name=Elezioni&file=foto&id_gruppo=$id_gruppo2&pdfvis=1')\">";
|
---|
854 | else echo "<td>";
|
---|
855 | echo "<b><img class=\"stemma\" src=\"modules.php?name=Elezioni&file=foto&id_gruppo=$id_gruppo2\" alt=\"immagine $descr_gruppo\" /><br>";
|
---|
856 | if($tipo_cons!=2 and $prognome) echo _PROGRAM;
|
---|
857 | echo "</b></td>";
|
---|
858 | echo "</tr>
|
---|
859 | </table>";
|
---|
860 | //Liste collegate
|
---|
861 | # if ($numero!=0 and !$votol and $genere>1)
|
---|
862 | // verifica delle sezioni in relazione ai candidati (comuni >=15000 $LIMIT>=4 non c'e' il voto di lista 5/5/2009
|
---|
863 |
|
---|
864 | # if ($genere!=2 && $fascia>$limite)
|
---|
865 | # echo "<div><h6>Liste:"._SEZSCRU." $numero_l "._SU." $sezioni_l</h6></div>";
|
---|
866 | # else
|
---|
867 | # if(!$circo and $votog) // non per le circoscrizionali, senato e camera
|
---|
868 | # echo "<div><h6>"._SEZSCRU." $numero_c "._SU." $sezioni_l</h6></div>";
|
---|
869 | echo "<table class=\"table-80\"><tr>";
|
---|
870 | $sql="select id_cons ,id_lista ,num_lista, descrizione from ".$prefix."_ele_lista where id_cons='$id_cons' and id_gruppo='$id_gruppo2' ORDER BY num_lista " ;
|
---|
871 | $result2 = $dbi->prepare("$sql");
|
---|
872 | $result2->execute();
|
---|
873 | $i=0;
|
---|
874 | while(list($id_cons2,$id_lista2,$num_lista, $descr_lista) = $result2->fetch(PDO::FETCH_NUM)) {
|
---|
875 | if ($num_lista!=0) {
|
---|
876 | $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons' and id_lista='$id_lista2'";
|
---|
877 | $res_lista = $dbi->prepare("$sql");
|
---|
878 | $res_lista->execute();
|
---|
879 | list($voti_lista) = $res_lista->fetch(PDO::FETCH_NUM);
|
---|
880 | // calcolo della percentuale
|
---|
881 | if ($circo){ // circoscrizioni
|
---|
882 | $voti_lista_tutti=0;
|
---|
883 | $sql="select id_lista from ".$prefix."_ele_lista where id_circ='$id_circ'";
|
---|
884 | $res_circ = $dbi->prepare("$sql");
|
---|
885 | $res_circ->execute();
|
---|
886 | while(list($lista_id) = $res_circ->fetch(PDO::FETCH_NUM)){
|
---|
887 | $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_lista='$lista_id'";
|
---|
888 | $res_circ_voti = $dbi->prepare("$sql");
|
---|
889 | $res_circ_voti->execute();
|
---|
890 | list($voti) = $res_circ_voti->fetch(PDO::FETCH_NUM);
|
---|
891 | $voti_lista_tutti=$voti_lista_tutti+$voti;
|
---|
892 | }
|
---|
893 | }else{
|
---|
894 |
|
---|
895 | // tutti
|
---|
896 | $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons'";
|
---|
897 | $res_lista_tutti = $dbi->prepare("$sql");
|
---|
898 | $res_lista_tutti->execute();
|
---|
899 | list($voti_lista_tutti) = $res_lista_tutti->fetch(PDO::FETCH_NUM);
|
---|
900 | }
|
---|
901 | if($voti_lista_tutti!=0){
|
---|
902 | $perc_lista=number_format(($voti_lista*100)/$voti_lista_tutti,5);
|
---|
903 | $perc_lista=number_format($perc_lista,3);// add luc 11 feb 2007
|
---|
904 | }else{
|
---|
905 | $perc_lista='';
|
---|
906 | }
|
---|
907 | $i++;
|
---|
908 | echo "<td class=\"table-main\"><a href=\"modules.php?name=Elezioni&id_gruppo=$id_gruppo2&id_circ=$id_circ&id_cons_gen=$id_cons_gen&id_lista=$id_lista2&op=partiti&voti_lista=$voti_lista&perc_lista=$perc_lista&id_comune=$id_comune\">
|
---|
909 | <img class=\"stemma\" src=\"modules.php?name=Elezioni&file=foto&id_lista=$id_lista2\" alt=\"stemma\" /><br />N. $num_lista $descr_lista";
|
---|
910 | if ($voti_lista) echo "<br />voti: $voti_lista ";
|
---|
911 | if ($perc_lista) echo "<span class=\"red\"> $perc_lista </span>%";
|
---|
912 | echo "</a></td>";
|
---|
913 | }
|
---|
914 | if (($i%3) ==0) echo "</tr><tr>";
|
---|
915 | }
|
---|
916 | if (($i%3) !=0)echo "</tr></table>";else echo "<td></td></tr></table>";
|
---|
917 | }
|
---|
918 | }
|
---|
919 | echo "";
|
---|
920 | }else{
|
---|
921 | // tot liste
|
---|
922 | $sql="SELECT id_lista FROM ".$prefix."_ele_lista where id_cons='$id_cons' $circos ";
|
---|
923 | $res = $dbi->prepare("$sql");
|
---|
924 | $res->execute();
|
---|
925 | $max = $res->rowCount();
|
---|
926 | // tot voti liste
|
---|
927 | if($circo) $sql="select sum(t1.voti) from ".$prefix."_ele_voti_lista as t1, ".$prefix."_ele_lista as t2 where t1.id_lista=t2.id_lista and t1.id_cons='$id_cons' and t2.id_circ='$id_circ'";
|
---|
928 | else $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons'";
|
---|
929 | $res_lista_tutti = $dbi->prepare("$sql");
|
---|
930 | $res_lista_tutti->execute();
|
---|
931 | list($voti_lista_tutti) = $res_lista_tutti->fetch(PDO::FETCH_NUM);
|
---|
932 | $sql="select id_cons ,id_lista ,num_lista, descrizione from ".$prefix."_ele_lista where id_cons='$id_cons' $circos ORDER BY num_lista LIMIT $min,$offset";
|
---|
933 | $result = $dbi->prepare("$sql");
|
---|
934 | $result->execute();
|
---|
935 | while(list($id_cons2,$id_lista,$num_lista, $descr_lista) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
936 | if ($num_lista!=0) {
|
---|
937 | // voti lista
|
---|
938 | $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons' and id_lista='$id_lista'";
|
---|
939 | $res_lista = $dbi->prepare("$sql");
|
---|
940 | $res_lista->execute();
|
---|
941 |
|
---|
942 | list($voti_lista) = $res_lista->fetch(PDO::FETCH_NUM);
|
---|
943 | if($voti_lista_tutti)
|
---|
944 | $perc_lista=number_format(($voti_lista*100)/$voti_lista_tutti,5);
|
---|
945 | else $perc_lista=0;
|
---|
946 | $perc_lista=number_format($perc_lista,2);
|
---|
947 | echo "<table class=\"table-80\">
|
---|
948 | <tr>"
|
---|
949 | ."<td class=\"td-5\"><b>"._NUM."</b></td>"
|
---|
950 | ."<td class=\"bggray\"><b>"._DESCR."</b></td>"
|
---|
951 | ."<td class=\"td-5\"><b>"._SIMBOLO."</b></td>
|
---|
952 | </tr>";
|
---|
953 | echo "<tr><td class=\"bggray\"><h1><b>$num_lista</b></h1></td>
|
---|
954 | <td class=\"table-main\"><a href=\"modules.php?name=Elezioni&id_cons_gen=$id_cons_gen&id_lista=$id_lista&op=partiti&voti_lista=$voti_lista&perc_lista=$perc_lista&id_comune=$id_comune\"><h1>$descr_lista<br /></a>
|
---|
955 | voti: $voti_lista <span class=\"redbig\">$perc_lista %</span></h1>";
|
---|
956 | echo "</td><td><a href=\"modules.php?name=Elezioni&id_cons_gen=$id_cons_gen&id_lista=$id_lista&op=partiti&voti_lista=$voti_lista&perc_lista=$perc_lista&id_comune=$id_comune\">
|
---|
957 | <img class=\"stemma\" src=\"modules.php?name=Elezioni&file=foto&id_lista=$id_lista\" alt=\"$descr_lista\" /></a>";
|
---|
958 | echo "</td></tr></table>";
|
---|
959 | }
|
---|
960 | }
|
---|
961 | //echo "</table>";
|
---|
962 | }
|
---|
963 | page($id_cons_gen,$go,$max,$min,$prev,$next,$offset,$file);
|
---|
964 | //CloseTable();
|
---|
965 | }
|
---|
966 |
|
---|
967 |
|
---|
968 |
|
---|
969 | function partiti(){
|
---|
970 | // visualizza i dati di lista con i candidati
|
---|
971 |
|
---|
972 | global $genere,$admin, $prefix, $dbi, $offset, $min, $id_cons_gen,$votog,$votol,$circo, $id_cons,$tipo_cons,$file,$prev,$next,$id_circ,$id_comune,$id_lista,$id_gruppo,$voti_lista,$perc_lista;
|
---|
973 |
|
---|
974 |
|
---|
975 |
|
---|
976 |
|
---|
977 | //dati();
|
---|
978 |
|
---|
979 | if ($circo==1){
|
---|
980 | $sql="select descrizione,num_circ from ".$prefix."_ele_circoscrizione where id_circ='$id_circ'";
|
---|
981 | $res_circ = $dbi->prepare("$sql");
|
---|
982 | $res_circ->execute();
|
---|
983 |
|
---|
984 | list($descr_circ,$num_circ)=$res_circ->fetch(PDO::FETCH_NUM);
|
---|
985 | if($num_circ) echo "<center><h1>"._CIRC_N." $num_circ: $descr_circ</h1>";
|
---|
986 | # numero sezioni
|
---|
987 |
|
---|
988 | }
|
---|
989 |
|
---|
990 | if ($genere!=4){
|
---|
991 | $sql="select descrizione from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'";
|
---|
992 | $res_gruppo = $dbi->prepare("$sql");
|
---|
993 | $res_gruppo->execute();
|
---|
994 |
|
---|
995 | list($descr_gruppo)=$res_gruppo->fetch(PDO::FETCH_NUM);
|
---|
996 |
|
---|
997 | }else{
|
---|
998 | $sql="select descrizione from ".$prefix."_ele_lista where id_lista='$id_lista'";
|
---|
999 | $res_gruppo = $dbi->prepare("$sql");
|
---|
1000 | $res_gruppo->execute();
|
---|
1001 |
|
---|
1002 | list($descr_gruppo)=$res_gruppo->fetch(PDO::FETCH_NUM);
|
---|
1003 |
|
---|
1004 | }
|
---|
1005 | // numero sezioni scrutinate, escluse circorscrizioni (da aggiungere)
|
---|
1006 |
|
---|
1007 | if ($circo!=1)
|
---|
1008 | {
|
---|
1009 | $sqlcir="";
|
---|
1010 | $sql2="select max(num_sez) from ".$prefix."_ele_sezioni where id_cons='$id_cons'";
|
---|
1011 | }
|
---|
1012 | else
|
---|
1013 | {
|
---|
1014 | $sqlcir="and id_circ='$id_circ'";
|
---|
1015 | $sql2="select count(num_sez) from ".$prefix."_ele_sezioni where id_sede in (select id_sede from ".$prefix."_ele_sede where id_circ='$id_circ')";
|
---|
1016 | }
|
---|
1017 | if ($votog)
|
---|
1018 | $sql="select t1.id_sez from ".$prefix."_ele_voti_candidati as t1 left join ".$prefix."_ele_candidati as t2 on t1.id_cand=t2.id_cand where t2.id_lista in (select id_lista from ".$prefix."_ele_lista where id_cons='$id_cons' $sqlcir) group by t1.id_sez ";
|
---|
1019 | else
|
---|
1020 | $sql="select id_sez from ".$prefix."_ele_voti_lista where id_lista in (select id_lista from ".$prefix."_ele_lista where id_cons='$id_cons' $sqlcir) group by id_sez ";
|
---|
1021 | $res1 = $dbi->prepare("$sql");
|
---|
1022 | $res1->execute();
|
---|
1023 | $numero=$res1->rowCount();
|
---|
1024 |
|
---|
1025 | $res2 = $dbi->prepare("$sql2");
|
---|
1026 | $res2->execute();
|
---|
1027 |
|
---|
1028 | list($sezioni)=$res2->fetch(PDO::FETCH_NUM);
|
---|
1029 |
|
---|
1030 |
|
---|
1031 |
|
---|
1032 |
|
---|
1033 |
|
---|
1034 |
|
---|
1035 |
|
---|
1036 |
|
---|
1037 | //$result = mysql_query("select id_cons ,id_lista ,num_lista, descrizione from ".$prefix."_ele_lista where id_lista='$id_lista'", $dbi);
|
---|
1038 |
|
---|
1039 | $sql="select id_cons ,id_lista ,num_lista, descrizione from ".$prefix."_ele_lista where id_lista='$id_lista'";
|
---|
1040 | $result = $dbi->prepare("$sql");
|
---|
1041 | $result->execute();
|
---|
1042 |
|
---|
1043 |
|
---|
1044 | list($id_cons2,$id_lista,$num_lista, $descr_lista) = $result->fetch(PDO::FETCH_NUM);
|
---|
1045 |
|
---|
1046 |
|
---|
1047 | # if ($numero!=0) echo "<center><h2>"._SEZSCRU." $numero "._SU." $sezioni</h2></center>";
|
---|
1048 | echo " <center><h5>"._LISTA." Numero : <font color=\"red\">$num_lista</font><br /></h5>";
|
---|
1049 |
|
---|
1050 |
|
---|
1051 | echo "<img src=\"modules.php?name=Elezioni&file=foto&id_lista=$id_lista\" style=\"width:50; text-align:center;\"><h2> $descr_lista</h2><br />";
|
---|
1052 | if ($voti_lista OR $perc_lista){ echo "<h5>";
|
---|
1053 | echo _VOTI.": <font color=\"red\">$voti_lista</font> "._PERC.": <font color=\"red\">$perc_lista %</font><br /></h5>";
|
---|
1054 | }
|
---|
1055 | echo "<center>"._GRUPPO."<h1> $descr_gruppo</h1>";
|
---|
1056 |
|
---|
1057 |
|
---|
1058 |
|
---|
1059 |
|
---|
1060 |
|
---|
1061 | echo "<table width=\"60%\">";
|
---|
1062 | // candidati con voti ottenuti
|
---|
1063 |
|
---|
1064 | $sql="SELECT t1.id_cand , t1.cognome, t1.nome, t1.num_cand, t2.id_cand, sum(t2.voti) as somma FROM ".$prefix."_ele_candidati as t1 , ".$prefix."_ele_voti_candidati as t2
|
---|
1065 | where t1.id_lista='$id_lista' and t1.id_cand=t2.id_cand group by t1.id_cand, t1.cognome, t1.nome, t1.num_cand, t2.id_cand order by somma desc, t1.num_cand asc" ;
|
---|
1066 | $res_candi = $dbi->prepare("$sql");
|
---|
1067 | $res_candi->execute();
|
---|
1068 |
|
---|
1069 | //$res_candi = mysql_query("SELECT id_cand , cognome, nome, num_cand FROM ".$prefix."_ele_candidati
|
---|
1070 | //where id_lista='$id_lista' and id_cons='$id_cons order by num_cand" , $dbi);
|
---|
1071 | $num_candi=$res_candi->rowCount();
|
---|
1072 | if (!$num_candi) {
|
---|
1073 | $sql="SELECT id_cand , cognome, nome, num_cand FROM ".$prefix."_ele_candidati
|
---|
1074 | where id_lista='$id_lista' and id_cons='$id_cons' order by num_cand" ;
|
---|
1075 | $res_candi = $dbi->prepare("$sql");
|
---|
1076 | $res_candi->execute();
|
---|
1077 |
|
---|
1078 | echo "<tr bgcolor=\"#EAEAEA\"><td >"._NUM."</td><td>"._CANDIDATO."</td></tr>";
|
---|
1079 | while(list($id_cand,$cognome,$nome, $num) = $res_candi->fetch(PDO::FETCH_NUM)) {
|
---|
1080 |
|
---|
1081 | echo "<tr><td>[ $num ]</td><td> $cognome $nome</td>";
|
---|
1082 | }
|
---|
1083 | }else{
|
---|
1084 | echo "<tr bgcolor=\"#EAEAEA\"><td >"._NUM."</td><td>"._CANDIDATO."</td><td>"._PREFERENZE."</td></tr>";
|
---|
1085 | while(list($id_cand,$cognome,$nome, $num,$id_cand, $somma) = $res_candi->fetch(PDO::FETCH_NUM)) {
|
---|
1086 |
|
---|
1087 | echo "<tr><td>[ $num ]</td><td>
|
---|
1088 | <a href=\"modules.php?name=Elezioni&id_cons_gen=$id_cons_gen&id_comune=$id_comune&op=candidato_sezione&min=$num&offset=$num&id_lista=$id_lista&orvert=1&offsetsez=$sezioni&id_circ=$id_circ\">
|
---|
1089 | $cognome $nome</a></td><td> $somma</td>";
|
---|
1090 | }
|
---|
1091 |
|
---|
1092 |
|
---|
1093 |
|
---|
1094 |
|
---|
1095 |
|
---|
1096 | echo "</tr>";
|
---|
1097 | }
|
---|
1098 | echo "</table>";
|
---|
1099 | }
|
---|
1100 |
|
---|
1101 |
|
---|
1102 | // funzione visualizzazione delle liste per camera e senato con raggruppamenti/coalizioni
|
---|
1103 | function liste(){
|
---|
1104 | global $id_cons,$id_cons_gen,$prefix,$dbi,$min,$offset,$op,$tipo_cons,$prev,$next,$votog,$votol,$circo,$genere,$id_comune,$id_circ;
|
---|
1105 | //dati();
|
---|
1106 | $offset=10;
|
---|
1107 | if (!isset($min)) $min=0;
|
---|
1108 |
|
---|
1109 | // numero sezioni scrutinate sul gruppo
|
---|
1110 | if ($circo) $circos = "and t2.id_circ=$id_circ" ; else $circos='';
|
---|
1111 | if ($genere==0) {
|
---|
1112 | $sql="select * from ".$prefix."_ele_voti_ref where id_cons='$id_cons' group by id_sez ";
|
---|
1113 | }else{
|
---|
1114 | $sql="select t1.* from ".$prefix."_ele_voti_gruppo as t1 left join ".$prefix."_ele_gruppo as t2 on t1.id_gruppo=t2.id_gruppo where t2.id_cons='$id_cons' $circos group by t1.id_sez ";
|
---|
1115 | }
|
---|
1116 | $res = $dbi->prepare("$sql");
|
---|
1117 | $res->execute();
|
---|
1118 | $numero=$res->rowCount();
|
---|
1119 | $sql="select t1.* from ".$prefix."_ele_sezioni as t1 left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t2.id_cons='$id_cons' $circos ";
|
---|
1120 | $res = $dbi->prepare("$sql");
|
---|
1121 | $res->execute();
|
---|
1122 |
|
---|
1123 | $sezioni=$res->rowCount();
|
---|
1124 | $sql="select chiusa from ".$prefix."_ele_cons_comune where id_cons='$id_cons'";
|
---|
1125 | $res = $dbi->prepare("$sql");
|
---|
1126 | $res->execute();
|
---|
1127 |
|
---|
1128 | $chiusa=$res->rowCount();
|
---|
1129 | if ($numero!=0 and $chiusa==0)
|
---|
1130 | echo "<div><h2>"._SEZSCRU." $numero "._SU." $sezioni</h2></div>";
|
---|
1131 |
|
---|
1132 | echo "<div><h1>"._LISTE."</h1></div><br /><br />";
|
---|
1133 |
|
---|
1134 |
|
---|
1135 |
|
---|
1136 |
|
---|
1137 | // tot liste
|
---|
1138 | $sql="SELECT t2.* FROM ".$prefix."_ele_lista as t2 where t2.id_cons='$id_cons' $circos ";
|
---|
1139 | $res = $dbi->prepare("$sql");
|
---|
1140 | $res->execute();
|
---|
1141 |
|
---|
1142 | $max = $res->rowCount();
|
---|
1143 |
|
---|
1144 | // tot voti liste
|
---|
1145 | $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons'";
|
---|
1146 | $res_lista_tutti = $dbi->prepare("$sql");
|
---|
1147 | $res_lista_tutti->execute();
|
---|
1148 |
|
---|
1149 | list($voti_lista_tutti) = $res_lista_tutti->fetch(PDO::FETCH_NUM);
|
---|
1150 |
|
---|
1151 | $sql="select id_cons ,id_lista ,id_gruppo, num_lista, descrizione from ".$prefix."_ele_lista as t2 where id_cons='$id_cons' $circos ORDER BY num_lista LIMIT $min,$offset";
|
---|
1152 | $result = $dbi->prepare("$sql");
|
---|
1153 | $result->execute();
|
---|
1154 |
|
---|
1155 | while(list($id_cons2,$id_lista,$id_gruppo, $num_lista, $descr_lista) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
1156 | if ($num_lista!=0) {
|
---|
1157 | // voti lista
|
---|
1158 | $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons' and id_lista='$id_lista'";
|
---|
1159 | $res_lista = $dbi->prepare("$sql");
|
---|
1160 | $res_lista->execute();
|
---|
1161 |
|
---|
1162 | list($voti_lista) = $res_lista->fetch(PDO::FETCH_NUM);
|
---|
1163 | if ($voti_lista_tutti!=0)
|
---|
1164 | $perc_lista=number_format(($voti_lista*100)/$voti_lista_tutti,2);
|
---|
1165 | else $perc_lista='';
|
---|
1166 | // gruppo
|
---|
1167 | $sql="select descrizione from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'";
|
---|
1168 | $res_gruppo = $dbi->prepare("$sql");
|
---|
1169 | $res_gruppo->execute();
|
---|
1170 |
|
---|
1171 | list($descr_gruppo) = $res_gruppo->fetch(PDO::FETCH_NUM);
|
---|
1172 |
|
---|
1173 |
|
---|
1174 | echo "<table class=\"table-80\"><tr class=\"bggray\">"
|
---|
1175 | ."<td class=\"td-5\"><b>"._NUM."</b></td>"
|
---|
1176 | ."<td ><b>"._DESCR."</b></td>"
|
---|
1177 | ."<td class=\"td-5\"><b>"._SIMBOLO."</b></td>"
|
---|
1178 | ."<td class=\"td-5\"><b>"._GRUPPO."</b></td></tr>";
|
---|
1179 |
|
---|
1180 |
|
---|
1181 |
|
---|
1182 | echo "<tr><td class=\"bggray\"><h1>$num_lista</h1>"
|
---|
1183 | ."</td>
|
---|
1184 | <td class=\"table-main\"><h1>$descr_lista<br />
|
---|
1185 | voti: $voti_lista <span class=\"redbig\"> $perc_lista</span> %</h1>";
|
---|
1186 | echo "</td>
|
---|
1187 | <td><a href=\"modules.php?name=Elezioni&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_lista=$id_lista&op=partiti&voti_lista=$voti_lista&perc_lista=$perc_lista&id_comune=$id_comune\">
|
---|
1188 | <img class=\"stemma\" src=\"modules.php?name=Elezioni&file=foto&id_lista=$id_lista\" alt=\"$descr_lista\" />";
|
---|
1189 | echo "</a></td>
|
---|
1190 | <td>
|
---|
1191 | <img class=\"stemma\" src=\"modules.php?name=Elezioni&file=foto&id_gruppo=$id_gruppo\" alt=\"$descr_gruppo\" />
|
---|
1192 | <br />$descr_gruppo</td>
|
---|
1193 | </tr></table>";
|
---|
1194 | }
|
---|
1195 | }
|
---|
1196 |
|
---|
1197 | $file="index";
|
---|
1198 | $go=$op;
|
---|
1199 | page($id_cons_gen,$go,$max,$min,$prev,$next,$offset,$file);
|
---|
1200 | }
|
---|
1201 |
|
---|
1202 |
|
---|
1203 |
|
---|
1204 | function grafici($id_cons) {
|
---|
1205 | global $visgralista;
|
---|
1206 | //graf_votanti();
|
---|
1207 | graf_gruppo($visgralista);
|
---|
1208 | //graf_candidato();
|
---|
1209 |
|
---|
1210 | }
|
---|
1211 |
|
---|
1212 | //visualizzaione a seconda dello stato della consultazione
|
---|
1213 | // finita si basa sui gruppi o liste per tutte le sezioni
|
---|
1214 | if (!$op){
|
---|
1215 |
|
---|
1216 | $circos=''; // definizione provvisoria
|
---|
1217 | if ($genere==0) {$tab="ref";}else{$tab="gruppo";}
|
---|
1218 | if ($votog) {$tab="lista";}else{$tab="gruppo";}
|
---|
1219 | $sql="select id_sez from ".$prefix."_ele_voti_".$tab." where id_cons='$id_cons' $circos group by id_sez ";
|
---|
1220 | $res = $dbi->prepare("$sql");
|
---|
1221 | $res->execute();
|
---|
1222 |
|
---|
1223 | $numero=$res->rowCount();
|
---|
1224 | $sql="select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos ";
|
---|
1225 | $res = $dbi->prepare("$sql");
|
---|
1226 | $res->execute();
|
---|
1227 |
|
---|
1228 | $sezioni=$res->rowCount();
|
---|
1229 | if ($numero==0) $op="gruppo";
|
---|
1230 | if ($numero==$sezioni) $op="graf_gruppo";
|
---|
1231 |
|
---|
1232 | }
|
---|
1233 | $test=phpversion();
|
---|
1234 | if($test>=5.6) $phpver=1; else $phpver=0;
|
---|
1235 | # echo "TEST: comune:$id_comune -- cons:$id_cons_gen<br>$TEST1 $TEST2";
|
---|
1236 | switch ($op){
|
---|
1237 |
|
---|
1238 |
|
---|
1239 | case "circo":
|
---|
1240 | circo();
|
---|
1241 | break;
|
---|
1242 |
|
---|
1243 | case "sezione":
|
---|
1244 | sezione();
|
---|
1245 | break;
|
---|
1246 |
|
---|
1247 | case "candi":
|
---|
1248 | include("candidato.php");
|
---|
1249 | candidato();
|
---|
1250 | //candi();
|
---|
1251 | break;
|
---|
1252 |
|
---|
1253 | case "gruppo":
|
---|
1254 | gruppo();
|
---|
1255 | break;
|
---|
1256 |
|
---|
1257 | case "partiti":
|
---|
1258 | partiti();
|
---|
1259 | BREAK;
|
---|
1260 |
|
---|
1261 | case "liste":
|
---|
1262 | liste();
|
---|
1263 | break;
|
---|
1264 |
|
---|
1265 | case "come":
|
---|
1266 | switch ($info){
|
---|
1267 | case 'dati':
|
---|
1268 | circo();
|
---|
1269 | break;
|
---|
1270 | case "confronti":
|
---|
1271 | include("confronti.php");
|
---|
1272 | break;
|
---|
1273 |
|
---|
1274 | case "affluenze_sez":
|
---|
1275 | if($phpver)
|
---|
1276 | include("affluenze.php");
|
---|
1277 | else
|
---|
1278 | include("affluenzephp5.php");
|
---|
1279 | break;
|
---|
1280 | case "votanti":
|
---|
1281 | if($phpver)
|
---|
1282 | include("votanti.php");
|
---|
1283 | else
|
---|
1284 | include("votantiphp5.php");
|
---|
1285 | break;
|
---|
1286 | default:
|
---|
1287 | come($info);
|
---|
1288 | }
|
---|
1289 | break;
|
---|
1290 |
|
---|
1291 | // esterni
|
---|
1292 |
|
---|
1293 | case "consiglieri":
|
---|
1294 | include("consiglieri.php");
|
---|
1295 | consiglio();
|
---|
1296 | break;
|
---|
1297 |
|
---|
1298 | case "gruppo_circo":
|
---|
1299 | include("gruppo.php");
|
---|
1300 | gruppo_circo();
|
---|
1301 | break;
|
---|
1302 |
|
---|
1303 | case "gruppo_sezione":
|
---|
1304 | include("gruppo.php");
|
---|
1305 | gruppo_circo();
|
---|
1306 | break;
|
---|
1307 |
|
---|
1308 | case "lista_circo":
|
---|
1309 | include("gruppo.php");
|
---|
1310 | gruppo_circo();
|
---|
1311 | break;
|
---|
1312 |
|
---|
1313 | case "lista_sezione":
|
---|
1314 | include("gruppo.php");
|
---|
1315 | gruppo_circo();
|
---|
1316 | break;
|
---|
1317 |
|
---|
1318 | case "candidato_circo":
|
---|
1319 | include("gruppo.php");
|
---|
1320 | gruppo_circo();
|
---|
1321 | break;
|
---|
1322 |
|
---|
1323 |
|
---|
1324 |
|
---|
1325 | case "candidato_sezione":
|
---|
1326 | include("gruppo.php");
|
---|
1327 | gruppo_circo();
|
---|
1328 | break;
|
---|
1329 |
|
---|
1330 | case "affluenze_graf":
|
---|
1331 | include("grafici.php");
|
---|
1332 | affluenze_graf();
|
---|
1333 | break;
|
---|
1334 |
|
---|
1335 | case "graf_votanti":
|
---|
1336 | include("grafici.php");
|
---|
1337 | graf_votanti();
|
---|
1338 | break;
|
---|
1339 |
|
---|
1340 | case "graf_candidato":
|
---|
1341 | include("grafici.php");
|
---|
1342 | # if (!$circo)graf_candidato();
|
---|
1343 | graf_candidato();
|
---|
1344 | break;
|
---|
1345 |
|
---|
1346 | case "graf_gruppo":
|
---|
1347 | include("grafici.php");
|
---|
1348 | graf_gruppo(0);
|
---|
1349 | break;
|
---|
1350 |
|
---|
1351 | case "graf_lista":
|
---|
1352 | include("grafici.php");
|
---|
1353 | graf_gruppo(1);
|
---|
1354 | break;
|
---|
1355 |
|
---|
1356 |
|
---|
1357 |
|
---|
1358 |
|
---|
1359 | case "tema":
|
---|
1360 | include("theme.php");
|
---|
1361 | break;
|
---|
1362 |
|
---|
1363 | case "top":
|
---|
1364 | include("top.php");
|
---|
1365 | break;
|
---|
1366 |
|
---|
1367 | case "contatti":
|
---|
1368 | include("contatti.php");
|
---|
1369 | break;
|
---|
1370 |
|
---|
1371 | case "rss":
|
---|
1372 | include("rss.php");
|
---|
1373 | break;
|
---|
1374 |
|
---|
1375 | case "evvai":
|
---|
1376 | include("evvai.php");
|
---|
1377 | break;
|
---|
1378 | case "privacy":
|
---|
1379 | include("blocchi/privacy/privacy.php");
|
---|
1380 | break;
|
---|
1381 | default:
|
---|
1382 | include("blocchi/privacy/privacy.php");
|
---|
1383 |
|
---|
1384 | }
|
---|
1385 |
|
---|
1386 | if ($csv!=1 && $rss!=1){
|
---|
1387 | ########## icona rss da sistemare in un altra parte con calma...
|
---|
1388 | global $circo;
|
---|
1389 | if($genere!=0 && $id_circ==''){ // no referendum ne circoscrizioni
|
---|
1390 | echo "<div align=\"right\"><a href=\"modules.php?id_cons_gen=$id_cons_gen&name=Elezioni&id_comune=$id_comune&file=index&op=rss&rss=1\"><img class =\"nobordo\" width=\"60\" src=\"modules/Elezioni/images/valid-rss.png\" alt=\"rss\"/></a></div>";
|
---|
1391 | }
|
---|
1392 |
|
---|
1393 | include("footer.php");
|
---|
1394 | }
|
---|
1395 | ?>
|
---|