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