[2] | 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 |
|
---|
| 9 | if (!defined('MODULE_FILE')) {
|
---|
| 10 | die ("Non puoi accedere al file direttamente...");
|
---|
| 11 | }
|
---|
| 12 | $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ?
|
---|
| 13 | $_GET : $_POST;
|
---|
| 14 |
|
---|
| 15 |
|
---|
| 16 |
|
---|
| 17 | $id_comune= (isset($param['id_comune'])) ? $param['id_comune']:$siteistat;
|
---|
| 18 | if (isset($param['id_cons_gen'])) $id_cons_gen=intval($param['id_cons_gen']); else $id_cons_gen='';
|
---|
| 19 | if (isset($param['op'])) $op=$param['op']; else $op='';
|
---|
| 20 | if (isset($param['minsez'])) $minsez=intval($param['minsez']); else $minsez='';
|
---|
| 21 | if (isset($param['id_lista'])) $id_lista=intval($param['id_lista']); else $id_lista='';
|
---|
| 22 | if (isset($param['id_circ'])) $id_circ=intval($param['id_circ']); else $id_circ='';
|
---|
| 23 | if (isset($param['csv'])) $csv=intval($param['csv']); else $csv='';
|
---|
| 24 | if (isset($param['min'])) $min=intval($param['min']); else $min= 0;
|
---|
| 25 | if (isset($param['orvert'])) $orvert=intval($param['orvert']); else $orvert='';
|
---|
| 26 | if (isset($param['offset'])) $offset=intval($param['offset']); else $offset='';
|
---|
| 27 | if (isset($param['offsetsez'])) $offsetsez=intval($param['offsetsez']); else $offsetsez='';
|
---|
| 28 | if (isset($param['perc'])) $perc=$param['perc']; else $perc='';
|
---|
| 29 | if (isset($param['info'])) get_magic_quotes_gpc() ? $info=$param['info']:$info=addslashes($param['info']); else $info='';
|
---|
| 30 | if (isset($param['files'])) get_magic_quotes_gpc() ? $files=$param['files']:$files=addslashes($param['files']); else $files='';
|
---|
| 31 | if (isset($param['voti_lista'])) $voti_lista=intval($param['voti_lista']); else $voti_lista= 0;
|
---|
| 32 | if (isset($param['perc_lista'])) $perc_lista=$param['perc_lista']; else $perc_lista= 0;
|
---|
| 33 | if (isset($param['lettera'])) get_magic_quotes_gpc() ? $lettera=$param['lettera']:$lettera=addslashes($param['lettera']); else $lettera='';
|
---|
| 34 | if (isset($param['id_gruppo'])) $id_gruppo=intval($param['id_gruppo']); else $id_gruppo='';
|
---|
| 35 | if (isset($param['tipo_cons'])) $tipo_cons=intval($param['tipo_cons']); else $tipo_cons='';
|
---|
[127] | 36 | if (isset($param['xls'])) $xls=intval($param['xls']); else $xls='';
|
---|
| 37 | if (isset($param['pdf'])) $pdf=intval($param['pdf']); else $pdf='';
|
---|
| 38 |
|
---|
[11] | 39 | # anti-xss nov. 2009
|
---|
| 40 | $id_comune=htmlentities($id_comune);
|
---|
| 41 | $perc=floatval($perc);
|
---|
| 42 | $perc_lista=floatval($perc_lista);
|
---|
| 43 | $datipdf= htmlentities($datipdf);
|
---|
| 44 | $op= htmlentities($op);
|
---|
| 45 | $info= htmlentities($info);
|
---|
| 46 | $files=htmlentities($files);
|
---|
| 47 | $lettera=htmlentities($lettera);
|
---|
[2] | 48 |
|
---|
[10] | 49 | $id_comune=intval($id_comune);
|
---|
[2] | 50 |
|
---|
| 51 |
|
---|
| 52 | //$id_cons_gen=$_GET['id_cons_gen'];
|
---|
[265] | 53 | $sql="SELECT t1.tipo_cons,t3.genere,t2.id_cons 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 t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.id_comune='$id_comune'" ;
|
---|
| 54 | $res = $dbi->prepare("$sql");
|
---|
| 55 | $res->execute();
|
---|
[2] | 56 |
|
---|
[265] | 57 | list($tipo_cons,$genere,$id_cons) = $res->fetch(PDO::FETCH_NUM);
|
---|
| 58 |
|
---|
[2] | 59 | if (isset($param['ops'])) $ops=$param['ops']; else $ops='';
|
---|
| 60 | if (isset($param['pag'])) $pag=$param['pag']; else $pag=0;
|
---|
| 61 | if (isset($param['num_ref'])) $num_ref=$param['num_ref'];
|
---|
| 62 | if (isset($param['num_refs'])) $num_refs=$param['num_refs'];
|
---|
| 63 | $bgcolor2='#cacaca';
|
---|
[126] | 64 |
|
---|
| 65 |
|
---|
| 66 | if (!IsSet($num_ref)) {
|
---|
| 67 | $num_ref=1;
|
---|
[265] | 68 | $sql="SELECT id_gruppo from ".$prefix."_ele_gruppo where id_cons=$id_cons";
|
---|
| 69 | $resg = $dbi->prepare("$sql");
|
---|
| 70 | $resg->execute();
|
---|
| 71 |
|
---|
| 72 | $num_refs= $resg->rowCount(); //quante pagine?
|
---|
[126] | 73 | }
|
---|
| 74 |
|
---|
| 75 |
|
---|
| 76 |
|
---|
[2] | 77 | //**************************************************************************
|
---|
| 78 | // ELE
|
---|
| 79 | //**************************************************************************
|
---|
| 80 | //controllo_finale($id_cons);
|
---|
| 81 |
|
---|
[178] | 82 | global $prefix, $dbi,$id_circ,$lang, $fascia, $limite, $votog;
|
---|
[2] | 83 |
|
---|
| 84 | include_once("modules/Elezioni/language/lang-$lang.php");
|
---|
| 85 | # testata
|
---|
| 86 |
|
---|
| 87 | if($csv==1){
|
---|
| 88 | include_once("modules/Elezioni/funzioni.php");
|
---|
| 89 |
|
---|
[265] | 90 | $sql="SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ";
|
---|
| 91 | $res = $dbi->prepare("$sql");
|
---|
| 92 | $res->execute();
|
---|
| 93 |
|
---|
| 94 | list($descr_com) = $res->fetch(PDO::FETCH_NUM);
|
---|
[2] | 95 | $descr_com =stripslashes($descr_com);
|
---|
| 96 | $datipdf .= "<div style=\"margin:0px auto; text-align:center;\">";
|
---|
| 97 | $siteistat=$id_comune;
|
---|
[117] | 98 | # salva sull'hardisk lo stemma del comune
|
---|
| 99 | $logo=verificasimbolo();
|
---|
| 100 | $immagine= "<img src=\"modules/Elezioni/images/$logo\" alt=\"logo\" align=\"left\"/>";
|
---|
| 101 |
|
---|
| 102 |
|
---|
| 103 |
|
---|
| 104 |
|
---|
| 105 |
|
---|
| 106 | if($xls!=1) $datipdf .= "<table><tr><td>$immagine</td><td>";
|
---|
[2] | 107 | $datipdf .= ""._COMUNE." $descr_com <br/>
|
---|
| 108 | "._RISULTA." "._CONSULTA."<br/>";
|
---|
[117] | 109 | $datipdf .= "$descr_cons <br />"._DISCLAIMER."";
|
---|
[2] | 110 | if($xls!=1) $datipdf .= "</td></tr></table>";
|
---|
| 111 | $datipdf .="</div>";
|
---|
| 112 |
|
---|
| 113 |
|
---|
[117] | 114 | $html = "<style type=\"text/css\">
|
---|
| 115 | <!--
|
---|
[2] | 116 |
|
---|
[117] | 117 | .td-89 {
|
---|
| 118 | width: 89%;
|
---|
| 119 | border: 1px;
|
---|
| 120 | text-align: left;
|
---|
| 121 | }
|
---|
| 122 | .td-vuoto {
|
---|
| 123 |
|
---|
| 124 | width: 100%;
|
---|
| 125 | border: 1px;
|
---|
| 126 | text-align: left;
|
---|
| 127 |
|
---|
| 128 | }
|
---|
[2] | 129 |
|
---|
| 130 |
|
---|
[117] | 131 | .td-5 {
|
---|
| 132 |
|
---|
| 133 | margin: 0px 0 0 0px;
|
---|
| 134 | width: 5%;
|
---|
| 135 | /*border: none;*/
|
---|
| 136 | padding: 0px;
|
---|
| 137 |
|
---|
| 138 | text-align: center;
|
---|
| 139 | }
|
---|
[2] | 140 |
|
---|
[117] | 141 |
|
---|
| 142 |
|
---|
| 143 | .bggray {
|
---|
| 144 | background: #ffffff;
|
---|
| 145 | FONT-SIZE: 13px;
|
---|
| 146 | FONT-FAMILY: Helvetica;
|
---|
| 147 | border: 1px;
|
---|
| 148 | }
|
---|
| 149 |
|
---|
| 150 | .bggray2 {
|
---|
| 151 | background: #EFEFEF;
|
---|
| 152 | FONT-SIZE: 13px;
|
---|
| 153 | FONT-FAMILY: Helvetica;
|
---|
| 154 | border: 1px;
|
---|
| 155 | }
|
---|
| 156 | -->
|
---|
| 157 | </style>";
|
---|
| 158 |
|
---|
| 159 |
|
---|
| 160 |
|
---|
| 161 |
|
---|
[2] | 162 | }
|
---|
[117] | 163 |
|
---|
[2] | 164 |
|
---|
| 165 |
|
---|
[117] | 166 |
|
---|
| 167 |
|
---|
| 168 |
|
---|
| 169 |
|
---|
| 170 |
|
---|
| 171 |
|
---|
| 172 |
|
---|
[2] | 173 |
|
---|
| 174 | // icone stampa e grafici
|
---|
| 175 | if ($csv!=1){
|
---|
[122] | 176 | if(isset($num_ref)) $curref="&num_ref=$num_ref"; else $curref='';
|
---|
[2] | 177 | if (!isset($html)) $html='';
|
---|
| 178 | $html .= "<div>
|
---|
| 179 | <a href=\"modules.php?name=Elezioni&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&op=graf_votanti\">
|
---|
| 180 | "._VER_GRAF." <img class=\"image\" src=\"modules/Elezioni/images/grafici.png\" alt=\"\" /></a>
|
---|
[126] | 181 |
|
---|
| 182 | <a href=\"modules.php?name=Elezioni&op=come&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&info=votanti&csv=1&pag=$pag&num_ref=$num_ref&num_refs=$num_refs\">"._VER_STAMPA."
|
---|
| 183 |
|
---|
[127] | 184 |
|
---|
[2] | 185 | <img class=\"image\" src=\"modules/Elezioni/images/printer.png\" alt=\"\" /></a>
|
---|
[126] | 186 |
|
---|
| 187 | <a href=\"modules.php?name=Elezioni&op=come&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&info=votanti&xls=1&csv=1;&pag=$pag&num_ref=$num_ref&num_refs=$num_refs\">
|
---|
| 188 |
|
---|
[127] | 189 |
|
---|
[2] | 190 | <img class=\"image\" src=\"modules/Elezioni/images/csv.gif\" alt=\"\" /></a>
|
---|
| 191 |
|
---|
[127] | 192 | <a href=\"modules.php?name=Elezioni&op=come&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&info=votanti&pdf=1&csv=1;&pag=$pag&num_ref=$num_ref&num_refs=$num_refs\">
|
---|
[122] | 193 | <a href=\"modules.php?name=Elezioni&op=come&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&info=votanti&pdf=1&csv=1;&pag=$pag$curref\">
|
---|
[117] | 194 | <img class=\"image\" src=\"modules/Elezioni/images/pdf.gif\" alt=\"\" /></a>
|
---|
[2] | 195 |
|
---|
[117] | 196 |
|
---|
[2] | 197 | </div>";
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 |
|
---|
| 201 |
|
---|
[265] | 202 | $sql="SELECT sum(maschi),sum(femmine) FROM ".$prefix."_ele_sezioni where id_cons='$id_cons'";
|
---|
| 203 | $res = $dbi->prepare("$sql");
|
---|
| 204 | $res->execute();
|
---|
| 205 |
|
---|
| 206 | list($totm,$totf) = $res->fetch(PDO::FETCH_NUM);
|
---|
[2] | 207 | $totel=$totm+$totf;
|
---|
| 208 | if (!IsSet($pag)) {$pag=0;} //inizializza il numero di pagina
|
---|
[127] | 209 | /*
|
---|
[2] | 210 | if (!IsSet($num_ref)) {
|
---|
| 211 | $num_ref=1;
|
---|
| 212 | $resg = mysql_query("SELECT id_gruppo from ".$prefix."_ele_gruppo where id_cons=$id_cons", $dbi);
|
---|
| 213 | $num_refs= mysql_num_rows($resg); //quante pagine?
|
---|
| 214 | }
|
---|
[127] | 215 | */
|
---|
[2] | 216 | if(($genere!=4) and $pag==0){ //diverso da liste a piu' candidati
|
---|
| 217 | $ops=4; //gestione gruppi (anche liste uninominali)
|
---|
| 218 | }else{
|
---|
| 219 | $ops=3; //gestione liste
|
---|
| 220 | }
|
---|
| 221 |
|
---|
[265] | 222 | $sql="SELECT id_gruppo,num_gruppo from ".$prefix."_ele_gruppo where id_cons=$id_cons and num_gruppo=$num_ref";
|
---|
| 223 | $resg = $dbi->prepare("$sql");
|
---|
| 224 | $resg->execute();
|
---|
| 225 |
|
---|
| 226 | list($idg,$numg) = $resg->fetch(PDO::FETCH_NUM);
|
---|
| 227 | $sql="SELECT id_sez,num_sez,t1.id_sede as id_sede,t2.id_circ as id_circ FROM ".$prefix."_ele_sezioni as t1,".$prefix."_ele_sede as t2 where t1.id_cons='$id_cons' and t1.id_sede=t2.id_sede order by num_sez ";
|
---|
| 228 | $res = $dbi->prepare("$sql");
|
---|
| 229 | $res->execute();
|
---|
| 230 |
|
---|
| 231 | $max = $res->rowCount(); //quante sezioni?
|
---|
| 232 | $sql="SELECT id_sez,num_sez,t1.id_sede as id_sede,t2.id_circ as id_circ FROM ".$prefix."_ele_sezioni as t1,".$prefix."_ele_sede as t2 where t1.id_cons='$id_cons' and t1.id_sede=t2.id_sede order by num_sez ";
|
---|
| 233 | $res = $dbi->prepare("$sql");
|
---|
| 234 | $res->execute();
|
---|
| 235 |
|
---|
| 236 | $num_sez = $res->rowCount(); //quante sezioni?
|
---|
[2] | 237 | for ($i=1;$i<=$num_sez;$i++){
|
---|
[265] | 238 | $sezione[$i]=$res->fetch(PDO::FETCH_BOTH); //inizializza l'array delle sezioni
|
---|
[2] | 239 | $ar[$i]=0;
|
---|
| 240 | }
|
---|
| 241 | $tab3="_ele_voti_lista";
|
---|
| 242 | if ($genere>0) { //se non e' un referendum
|
---|
[139] | 243 |
|
---|
| 244 |
|
---|
| 245 |
|
---|
[2] | 246 | if (!($genere==4) and $pag==0){ //se non e' una lista uninominale ed e' la prima pagina
|
---|
[139] | 247 |
|
---|
[142] | 248 | $tab="SELECT 0,t2.id_sez,t2.num_sez,t2.validi,'0','0',t2.validi,t2.nulli,t2.bianchi,t2.contestati, t4.id_circ,t2.id_sede,'0',t2.voti_nulli FROM ".$prefix."_ele_sezioni as t2 left join ".$prefix."_ele_sede as t4 on (t2.id_sede=t4.id_sede) where t2.id_cons='$id_cons' and t2.validi+t2.nulli+t2.bianchi+t2.contestati>0 group by t2.id_sez order by t2.num_sez ";
|
---|
[2] | 249 |
|
---|
| 250 | }else{ // e' una lista uninominale o la seconda pagina
|
---|
[139] | 251 |
|
---|
| 252 |
|
---|
| 253 |
|
---|
| 254 | # voto disgiunto regione sicilia aggiunge il campo solo lista
|
---|
| 255 | if(isdisgiunto()){
|
---|
[142] | 256 | $tab="SELECT '0',t1.id_sez,t1.num_sez,sum(t2.voti),t1.solo_gruppo,t1.solo_lista,t1.validi,t1.nulli,t1.bianchi,t1.contestati, t4.id_circ,t1.id_sede,'0',t1.voti_nulli
|
---|
[2] | 257 | FROM ".$prefix."_ele_sezioni as t1 left join ".$prefix.$tab3." as t2 on (t1.id_sez=t2.id_sez)
|
---|
| 258 | left join ".$prefix."_ele_sede as t4 on (t1.id_sede=t4.id_sede)
|
---|
| 259 | where t1.id_cons='$id_cons' and t1.id_cons=t2.id_cons group by t2.id_sez order by t1.num_sez ";
|
---|
[139] | 260 | }else{
|
---|
| 261 |
|
---|
[142] | 262 | $tab="SELECT '0',t1.id_sez,t1.num_sez,sum(t2.voti),t1.solo_gruppo,'0',t1.validi,t1.nulli,t1.bianchi,t1.contestati, t4.id_circ,t1.id_sede,'0',t1.voti_nulli
|
---|
[139] | 263 | FROM ".$prefix."_ele_sezioni as t1 left join ".$prefix.$tab3." as t2 on (t1.id_sez=t2.id_sez)
|
---|
| 264 | left join ".$prefix."_ele_sede as t4 on (t1.id_sede=t4.id_sede)
|
---|
| 265 | where t1.id_cons='$id_cons' and t1.id_cons=t2.id_cons group by t2.id_sez order by t1.num_sez ";
|
---|
| 266 | }
|
---|
[2] | 267 | }
|
---|
[139] | 268 |
|
---|
| 269 |
|
---|
| 270 |
|
---|
[117] | 271 | $riga1 = "";
|
---|
| 272 | if($pag==0)$riga1 .="<h2>"._DETTAGLIO." "._VOTIE."</h2>";
|
---|
[139] | 273 | else $riga1 .="<h4>"._DETTAGLIO." "._VOTIE." "._ASOLA_LISTA."</h4>";
|
---|
[2] | 274 |
|
---|
[139] | 275 | }else{ // e' un referendum --> t3.id_gruppo vuota per allineare il while (da rifare con array)
|
---|
[249] | 276 | $tab="SELECT t1.id_gruppo,t1.id_sez,t2.num_sez,t1.si,t1.no,'0',t1.validi,t1.nulli,t1.bianchi,t1.contestati, t4.id_circ,t2.id_sede,t3.num_gruppo,'0'
|
---|
[2] | 277 | FROM ".$prefix."_ele_voti_ref as t1 left join ".$prefix."_ele_sezioni as t2 on (t1.id_sez=t2.id_sez)
|
---|
| 278 | left join ".$prefix."_ele_gruppo as t3 on (t1.id_gruppo=t3.id_gruppo) left join ".$prefix."_ele_sede as t4 on (t2.id_sede=t4.id_sede)
|
---|
| 279 | where t1.id_cons='$id_cons' and t1.id_gruppo='$idg' order by t2.num_sez ";
|
---|
| 280 | $riga1 = "<div style=\"margin:0px auto;text-align:center;\">";
|
---|
[117] | 281 | $riga1 .="<h2>"._DETTAGLIO." "._VOTIE."</h2></div>";
|
---|
[2] | 282 |
|
---|
[265] | 283 | $sql="select descrizione from ".$prefix."_ele_gruppo where id_gruppo='$idg'";
|
---|
| 284 | $des = $dbi->prepare("$sql");
|
---|
| 285 | $des->execute();
|
---|
| 286 |
|
---|
| 287 | list($descrizione)=$des->fetch(PDO::FETCH_BOTH);
|
---|
[2] | 288 | $riga1 .="<h4>$descrizione</h4>";
|
---|
| 289 | }
|
---|
[265] | 290 | $sql="$tab ";
|
---|
| 291 | $res = $dbi->prepare("$sql");
|
---|
| 292 | $res->execute();
|
---|
| 293 |
|
---|
| 294 | $num_scr = $res->rowCount();
|
---|
[2] | 295 | //$riga2= "<div>"._SEZSCR." $num_scr su $num_sez</div>";//sezioni scrutinate
|
---|
| 296 |
|
---|
| 297 | $riga2 = "<table style=\"border:1px solid #6A6A6A;\" summary=\"Tabella dei voti espressi\">";
|
---|
[117] | 298 | $riga3 = "<tr class=\"bggray2\">
|
---|
[2] | 299 | <td>"._SEZIONI."</td>
|
---|
| 300 | <td>"._VOTIU."</td>
|
---|
| 301 | <td>"._VOTID."</td>
|
---|
| 302 | <td>"._VOTIE."</td>"; //testata con nomi dei campi
|
---|
| 303 | if ($genere==0) { //se e' un referendum
|
---|
| 304 | $riga3 .= "<td>"._SI."</td><td>"._NO."</td>";
|
---|
| 305 | } elseif ((($genere==5) or ($genere==3)) and $pag==1){
|
---|
[139] | 306 | $riga3 .= "<td>Voti "._LISTE."</td>";
|
---|
| 307 | if(isdisgiunto()){
|
---|
| 308 | $riga3 .= "<td>Voti "._PRESI."</td>";
|
---|
| 309 | $riga3 .= "<td>"._SOLO_LISTA."</td>";
|
---|
| 310 |
|
---|
| 311 |
|
---|
| 312 | } // voto disgiunto
|
---|
[178] | 313 | if (!$votog) $riga3 .= "<td>"._ASOLO_GRUPPO."</td>";
|
---|
[2] | 314 | }
|
---|
[139] | 315 |
|
---|
[2] | 316 | $riga3 .= "<td>"._VALIDI."</td><td>"._NULLI."</td><td>"._BIANCHI."</td><td>"._CONTESTATI."</td>"
|
---|
| 317 | ."</tr>\n";
|
---|
[265] | 318 | $sql="$tab ";
|
---|
| 319 | $res = $dbi->prepare("$sql");
|
---|
| 320 | $res->execute();
|
---|
| 321 |
|
---|
| 322 | $num_scr = $res->rowCount();
|
---|
[2] | 323 | $righe= "";
|
---|
| 324 | $scrutinate=1;
|
---|
| 325 | $tot_u=0;$tot_d=0;$tot_voti=0; $tot_si=0;$tot_no=0;$tot_validi=0;$tot_nulli=0;$tot_bianchi=0;$tot_contestati=0;
|
---|
[139] | 326 | $tot_sololista=0;$tot_gruppo=0;
|
---|
| 327 | #$si e $no sono valide anche per voti lista e solo gruppo per i non referendum
|
---|
[265] | 328 | while (list($id_gruppo,$id,$num,$si,$no,$sololista,$validi,$nulli,$bianchi,$contestati,$id_circ,$id_sede,$gruppo,$votinulli) = $res->fetch(PDO::FETCH_NUM)){
|
---|
[142] | 329 | $nulli+=$votinulli;
|
---|
[2] | 330 | // inserimento numeri di sez non scrutinate
|
---|
| 331 | while ($scrutinate < $num) {
|
---|
| 332 | $righe.= "<tr><td><span style=\"color: rgb(255, 0, 0);\">$scrutinate</span></td></tr>\n";
|
---|
| 333 | $scrutinate++;
|
---|
| 334 | }
|
---|
[139] | 335 |
|
---|
| 336 | # voti sindaco, gruppo o presidente
|
---|
| 337 | $tab5="SELECT sum(voti) FROM ".$prefix."_ele_voti_gruppo where id_cons='$id_cons' and id_sez='$id'";
|
---|
[265] | 338 | $sql="$tab5";
|
---|
| 339 | $res3 = $dbi->prepare("$sql");
|
---|
| 340 | $res3->execute();
|
---|
| 341 |
|
---|
| 342 | list($sindaco) = $res3->fetch(PDO::FETCH_NUM);
|
---|
[139] | 343 |
|
---|
| 344 |
|
---|
[2] | 345 | $scrutinate++;
|
---|
| 346 | // fine inserimento
|
---|
| 347 | $tab2="SELECT max(voti_donne),max(voti_uomini),max(voti_complessivi) FROM ".$prefix."_ele_voti_parziale where id_cons='$id_cons' and id_sez='$id'";
|
---|
| 348 | if ($genere==0) $tab2 .= " and id_gruppo=$id_gruppo";
|
---|
[265] | 349 | $sql=$tab2;
|
---|
| 350 | $res2 = $dbi->prepare("$sql");
|
---|
| 351 | $res2->execute();
|
---|
| 352 |
|
---|
| 353 | list($votid,$votiu,$voti) = $res2->fetch(PDO::FETCH_NUM);
|
---|
[2] | 354 | // $voti=$votiu+$votid;
|
---|
[139] | 355 | $tot_gruppo+=$sindaco;
|
---|
[2] | 356 | $tot_u+=$votiu;
|
---|
| 357 | $tot_d+=$votid;
|
---|
| 358 | $tot_voti+=$voti;
|
---|
| 359 | $tot_si+=$si;
|
---|
| 360 | $tot_no+=$no;
|
---|
| 361 | $tot_validi+=$validi;
|
---|
| 362 | $tot_nulli+=$nulli;
|
---|
| 363 | $tot_bianchi+=$bianchi;
|
---|
| 364 | $tot_contestati+=$contestati;
|
---|
[139] | 365 | $tot_sololista+=$sololista;
|
---|
[117] | 366 | $righe .= "<tr class=\"bggray2\">
|
---|
[2] | 367 | <td>$num</td>
|
---|
| 368 | <td>".number_format($votiu,0,',','.')."</td>
|
---|
| 369 | <td>".number_format($votid,0,',','.')."</td>
|
---|
| 370 | <td>".number_format($voti,0,',','.')."</td>";
|
---|
[139] | 371 | if ($genere==0 or ((($genere==5) or ($genere==3)) and $pag==1)){
|
---|
| 372 | $righe .= "<td>".number_format($si,0,',','.')."</td>";
|
---|
[2] | 373 |
|
---|
[139] | 374 | if(isdisgiunto()){
|
---|
| 375 | $righe .= "<td>".number_format($sindaco,0,',','.')."</td>";
|
---|
| 376 | $righe .= "<td>".number_format($sololista,0,',','.')."</td>";
|
---|
| 377 | }
|
---|
[178] | 378 | if (!$votog) $righe .= "<td>".number_format($no,0,',','.')."</td>";
|
---|
[139] | 379 |
|
---|
| 380 |
|
---|
| 381 | }
|
---|
| 382 |
|
---|
| 383 |
|
---|
[2] | 384 | $righe .= "<td>".number_format($validi,0,',','.')."</td>
|
---|
[139] | 385 |
|
---|
[2] | 386 | <td>$nulli</td>
|
---|
| 387 | <td>$bianchi</td>
|
---|
| 388 | <td>$contestati</td></tr>";
|
---|
| 389 | }
|
---|
| 390 | if ($num<$num_sez) {
|
---|
| 391 | for (;$scrutinate<=$num_sez;$scrutinate++) {
|
---|
| 392 | $righe .= "<tr><td>";
|
---|
| 393 | $righe .="<span style=\"color: rgb(255, 0, 0);\">$scrutinate</span></td></tr>";
|
---|
| 394 | }
|
---|
| 395 | }
|
---|
[30] | 396 | $righet='';
|
---|
[2] | 397 | if($num_scr){
|
---|
| 398 | $righet = "<tr class=\"bggray\">
|
---|
| 399 | <td ></td>
|
---|
| 400 | <td>"._VOTIU."</td>
|
---|
| 401 | <td>"._VOTID."</td>
|
---|
| 402 | <td>"._VOTIE."</td>"; //testata con nomi dei campi
|
---|
| 403 | if ($genere==0) { //se e' un referendum
|
---|
| 404 | $righet .= "<td>"._SI."</td><td>"._NO."</td>";
|
---|
| 405 | } elseif ((($genere==5) or ($genere==3)) and $pag==1){
|
---|
[139] | 406 | $righet .= "<td>Voti "._LISTE."</td>";
|
---|
| 407 | if(isdisgiunto()){
|
---|
| 408 | $righet .= "<td>Voti "._PRESI."</td>";
|
---|
| 409 | $righet .= "<td>"._SOLO_LISTA."</td>";
|
---|
| 410 | } // voto disgiunto
|
---|
[178] | 411 | if (!$votog) $righet .= "<td>"._ASOLO_GRUPPO."</td>";
|
---|
[139] | 412 |
|
---|
[2] | 413 | }
|
---|
| 414 | if($totel==0) $totelrip="0.00"; else $totelrip=number_format($tot_voti*100/$totel,2);
|
---|
| 415 | if($totf==0) $totfrip="0.00"; else $totfrip=number_format($tot_d*100/$totf,2);
|
---|
| 416 | if($totm==0) $totmrip="0.00"; else $totmrip=number_format($tot_u*100/$totm,2);
|
---|
| 417 | $righet .= "<td>"._VALIDI."</td><td>"._NULLI."</td><td>"._BIANCHI."</td><td>"._CONTESTATI."</td>"
|
---|
| 418 | ."</tr>
|
---|
| 419 |
|
---|
| 420 |
|
---|
| 421 |
|
---|
[139] | 422 | <tr class=\"td-vuotoc\"><td><b>"._TOT."</b></td><td><b>".number_format($tot_u,0,',','.')."</b><br /><i>(".$totmrip."%)</i></td><td><b>".number_format($tot_d,0,',','.')."</b><br /><i>(".$totfrip."%)</i></td><td><b>".number_format($tot_voti,0,',','.')."</b><br /><i>(".$totelrip."%)</i></td>";
|
---|
[2] | 423 |
|
---|
| 424 | // se e' un referendum o una consultazione con raggruppamenti
|
---|
| 425 |
|
---|
| 426 | if($tot_validi){
|
---|
[139] | 427 | if ($genere==0 or ((($genere==5) or ($genere==3)) and $pag==1)){
|
---|
| 428 | $righet .= "<td><b>".number_format($tot_si,0,',','.')."</b><br /><i>(".number_format($tot_si*100/$tot_validi,2)."%)</i></td>";
|
---|
| 429 |
|
---|
| 430 | if(isdisgiunto()){
|
---|
| 431 | $righet .="<td><b>".number_format($tot_gruppo,0,',','.')."</b><br /><i>(".number_format($tot_gruppo*100/$tot_validi,2)."%)</i></td>";
|
---|
| 432 | $righet .="<td><b>".number_format($tot_sololista,0,',','.')."</b><br /><i>(".number_format($tot_sololista*100/$tot_validi,2)."%)</i></td>";
|
---|
| 433 | }
|
---|
| 434 |
|
---|
| 435 |
|
---|
[178] | 436 | if(!$votog) $righet .="<td><b>".number_format($tot_no,0,',','.')."</b><br /><i>(".number_format($tot_no*100/$tot_validi,2)."%)</i></td>";
|
---|
[139] | 437 | }
|
---|
| 438 |
|
---|
| 439 |
|
---|
| 440 | $righet .= "<td><b>".number_format($tot_validi,0,',','.')."</b><br /><i>(".($tot_voti ? number_format($tot_validi*100/$tot_voti,2):'0.00')."%)</i></td><td><b>"
|
---|
| 441 | .number_format($tot_nulli,0,',','.')."</b><br /><i>(".($tot_voti ? number_format($tot_nulli*100/$tot_voti,2):'0.00')."%)</i></td><td><b>".number_format($tot_bianchi,0,',','.')."</b><br /><i>(".($tot_voti ? number_format($tot_bianchi*100/$tot_voti,2):'0.00')."%)</i></td><td><b>".number_format($tot_contestati,0,',','.')."</b><br /><i>(".($tot_voti ? number_format($tot_contestati*100/$tot_voti,2):'0.00')."%)</i></td></tr>";
|
---|
[2] | 442 | }else{
|
---|
[139] | 443 | if ($genere==0 or ((($genere==5) or ($genere==3)) and $pag==1)){
|
---|
| 444 | $righet .= "<td><b>".number_format($tot_si,0,',','.')."</b><br /><i>(0.00%)</i></td><td><b>".number_format($tot_no,0,',','.')."</b><br /><i>(0.00%)</i></td>";}
|
---|
| 445 | $righet .= "<td><b>0</b><br /><i>(0.00%)</i></td><td><b>"
|
---|
| 446 | .number_format($tot_nulli,0,',','.')."</b><br /><i>(".($tot_voti ? number_format($tot_nulli*100/$tot_voti,2):'0,00')."%)</i></td><td><b>".number_format($tot_bianchi,0,',','.')."</b><br /><i>(".($tot_voti ? number_format($tot_bianchi*100/$tot_voti,2):'0,00')."%)</i></td><td><b>".number_format($tot_contestati,0,',','.')."</b><br /><i>(".($tot_voti ? number_format($tot_contestati*100/$tot_voti,2):'0,00')."%)</i></td></tr>";
|
---|
[2] | 447 | }
|
---|
| 448 | }
|
---|
| 449 | $righe .= "</table>";
|
---|
[117] | 450 | if(!isset($html)) $html='';
|
---|
[2] | 451 | $html .= "$riga1";
|
---|
| 452 | $html .= $riga2."";
|
---|
| 453 | $html .= $righet;
|
---|
| 454 | $html .= $riga3;
|
---|
| 455 | $html .= $righe;
|
---|
| 456 |
|
---|
| 457 |
|
---|
| 458 | $html .="<div>";
|
---|
| 459 | if($genere==0){ //se e' referendum
|
---|
[117] | 460 | if ($xls!='1' && $pdf!='1' && $csv!='1'){
|
---|
[2] | 461 | #'Pagina precedente' e 'Pagina Successiva'
|
---|
| 462 | $cur=$num_ref;
|
---|
| 463 | if ($cur>1) {
|
---|
| 464 | $num_ref--;
|
---|
[126] | 465 | $html .= "<a href=\"modules.php?name=Elezioni&op=come&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&info=votanti&num_ref=$num_ref&num_refs=$num_refs&csv=$csv&xls=$xls&pdf=$pdf\">";
|
---|
[2] | 466 | $html .= "[ <b>"._PREV_MATCH."</b> ]</a>";
|
---|
| 467 | }
|
---|
| 468 | if ($cur<$num_refs) {
|
---|
| 469 | $cur++;
|
---|
[126] | 470 | $html .= "<a href=\"modules.php?name=Elezioni&op=come&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&info=votanti&num_ref=$cur&num_refs=$num_refs&csv=$csv&xls=$xls&pdf=$pdf\">";
|
---|
[2] | 471 |
|
---|
| 472 | $html .= "[ <b>"._NEXT_MATCH."</b> ]</a>";
|
---|
| 473 | }
|
---|
[117] | 474 | }
|
---|
| 475 | }
|
---|
| 476 | if($genere==5 or $genere==3){ //se vi sono raggruppamenti
|
---|
[95] | 477 | if($csv!=1 and $fascia>$limite){
|
---|
[2] | 478 |
|
---|
| 479 | $pag=($pag==0 ? 1:0);
|
---|
| 480 | $html .= "<a href=\"modules.php?name=Elezioni&file=index&id_cons_gen=$id_cons_gen&id_comune=$id_comune&op=come&info=votanti&pag=$pag&csv=$csv\"><b>";
|
---|
| 481 | if($pag) $html .= _VOTIL;
|
---|
| 482 | //_CONTR_CONS;
|
---|
| 483 | else $html .= _VOTIE;
|
---|
| 484 | //_CONTR_ESPR;
|
---|
| 485 | $html .= "</b></a>";
|
---|
| 486 | }
|
---|
| 487 | }
|
---|
| 488 |
|
---|
| 489 |
|
---|
| 490 | if($csv==1){
|
---|
| 491 | $data=date("d-m-y G:i");
|
---|
[127] | 492 | $html .="<br/><div style=\"margin:0 auto;text-align:center;\"><i>Stampato: $data</i>";
|
---|
[126] | 493 | $html .="<br/><i>Eleonline by l. apolito & r. gigli - www.eleonline.it</i></div>";
|
---|
[2] | 494 | //$html .= $html;
|
---|
| 495 |
|
---|
| 496 | }
|
---|
| 497 | $html .= "</div>";
|
---|
| 498 |
|
---|
| 499 |
|
---|
[139] | 500 |
|
---|
[2] | 501 | ############### stampa
|
---|
[117] | 502 | if ($xls!='1' && $pdf!='1'){
|
---|
[2] | 503 | echo "$datipdf $html";
|
---|
[117] | 504 | }elseif($xls=="1"){
|
---|
| 505 | $nomefile="votanti.xls";
|
---|
[2] | 506 | header ("Content-Type: application/vnd.ms-excel");
|
---|
| 507 | header ("Content-Disposition: inline; filename=$nomefile");
|
---|
| 508 |
|
---|
| 509 | echo "$datipdf";
|
---|
| 510 | echo "$html \n";
|
---|
[117] | 511 | }elseif($pdf=='1'){
|
---|
[139] | 512 |
|
---|
| 513 |
|
---|
[117] | 514 | $nomefile="$descr_cons votanti.pdf";
|
---|
[139] | 515 |
|
---|
| 516 |
|
---|
| 517 |
|
---|
| 518 |
|
---|
| 519 |
|
---|
[117] | 520 |
|
---|
[139] | 521 | $stampa ="<div style=\"margin:0 auto;text-align:center;\">$datipdf $html</div>";
|
---|
[117] | 522 |
|
---|
| 523 | require_once('inc/hpdf403/html2pdf.class.php');
|
---|
| 524 | $html2pdf = new HTML2PDF('L','A4', 'it');
|
---|
| 525 | $html2pdf->WriteHTML($stampa, isset($_GET['vuehtml']));
|
---|
| 526 | $html2pdf->Output($nomefile);
|
---|
[139] | 527 |
|
---|
| 528 |
|
---|
[2] | 529 | }
|
---|
| 530 |
|
---|
| 531 |
|
---|
[139] | 532 |
|
---|
| 533 |
|
---|
[2] | 534 | if($csv!=1 ) include ("footer.php");
|
---|
| 535 |
|
---|
| 536 |
|
---|
| 537 |
|
---|
| 538 | ?>
|
---|