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