[2] | 1 | <?php
|
---|
| 2 | /************************************************************************/
|
---|
| 3 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
| 4 | /* by Roberto Gigli & Luciano Apolito */
|
---|
| 5 | /* http://www.eleonline.it */
|
---|
| 6 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
| 7 | /************************************************************************/
|
---|
| 8 |
|
---|
| 9 | global $circo,$prefix,$dbi,$id_cons,$genere,$id_circ;
|
---|
| 10 |
|
---|
| 11 | if (isset($circo) and $circo) $circos="and t2.id_circ='$id_circ'";
|
---|
| 12 | else $circos='';
|
---|
| 13 | // numero sezioni scrutinate
|
---|
| 14 | // $res2 = mysql_query("select * from ".$prefix."_ele_sezioni where id_cons='$id_cons'",$dbi);
|
---|
[265] | 15 | $sql="select t1.* from ".$prefix."_ele_sezioni as t1 left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t1.id_cons='$id_cons' $circos";
|
---|
| 16 | $res2 = $dbi->prepare("$sql");
|
---|
| 17 | $res2->execute();
|
---|
| 18 |
|
---|
| 19 | $sezioni=$res2->rowCount();
|
---|
[2] | 20 |
|
---|
| 21 | //echo "select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos";
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 |
|
---|
| 25 | // barre
|
---|
[371] | 26 | $l_size = getimagesize("modules/Elezioni/images/barre/leftbar.jpg");
|
---|
| 27 | $m_size = getimagesize("modules/Elezioni/images/barre/mainbar.jpg");
|
---|
| 28 | $r_size = getimagesize("modules/Elezioni/images/barre/rightbar.jpg");
|
---|
| 29 | $l_size2 = getimagesize("modules/Elezioni/images/barre/leftbar2.jpg");
|
---|
| 30 | $m_size2 = getimagesize("modules/Elezioni/images/barre/mainbar2.jpg");
|
---|
| 31 | $r_size2 = getimagesize("modules/Elezioni/images/barre/rightbar2.jpg");
|
---|
[2] | 32 |
|
---|
| 33 | # $res = mysql_query("select orario,data from ".$prefix."_ele_rilaff where id_cons_gen='$id_cons_gen' order by data desc,orario DESC limit 1", $dbi);
|
---|
| 34 | #x Luciano: quella sopra diventa quella sotto. in rilaff ci sono tutte le date e orari di affluenza mentre in vot_parziale solo quelli inseriri
|
---|
| 35 | # inoltre va messo il desc anche alla data altrimenti il risultato ha la data piu' bassa e l'ora piu' alta
|
---|
[265] | 36 | $sql="select orario,data from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' order by data desc,orario desc limit 1";
|
---|
| 37 | $res = $dbi->prepare("$sql");
|
---|
| 38 | $res->execute();
|
---|
| 39 |
|
---|
[2] | 40 | if($res){
|
---|
| 41 |
|
---|
[265] | 42 | while(list($orario,$data) = $res->fetch(PDO::FETCH_NUM)) {
|
---|
[2] | 43 | list ($ore,$minuti,$secondi)=explode(':',$orario);
|
---|
| 44 | list ($anno,$mese,$giorno)=explode('-',$data);
|
---|
| 45 | $tot_v_m=0;$tot_v_d=0;$tot_t=0;
|
---|
| 46 |
|
---|
[279] | 47 | $sql="select t3.id_sez from ".$prefix."_ele_voti_parziale as t3 left join ".$prefix."_ele_sezioni as t1 on t3.id_sez=t1.id_sez left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t3.id_cons='$id_cons' and t3.data='$data' and t3.orario='$orario' $circos group by t3.id_sez ";
|
---|
[269] | 48 | $res1 = $dbi->prepare("$sql");
|
---|
| 49 | $res1->execute();
|
---|
[2] | 50 |
|
---|
[265] | 51 |
|
---|
| 52 | $numero=$res1->rowCount();
|
---|
[2] | 53 |
|
---|
| 54 | echo "<br /><div><h5>Ultime Affluenze</h5></div>";
|
---|
| 55 | echo "<div style=\"text-align:center;color:#ff0000\"><b>"._ORE." $ore,$minuti "._DEL." $giorno/$mese/$anno</b></div>";
|
---|
| 56 |
|
---|
| 57 |
|
---|
| 58 |
|
---|
| 59 |
|
---|
| 60 |
|
---|
| 61 | #modifica del 26giugno 09 per gestione circoscrizionali
|
---|
[265] | 62 | if($genere==0)
|
---|
| 63 | $sql="select sum(t1.voti_complessivi), t2.num_gruppo , t2.id_gruppo from ".$prefix."_ele_voti_parziale as t1 left join ".$prefix."_ele_gruppo as t2 on (t1.id_gruppo=t2.id_gruppo) where t1.id_cons='$id_cons' and t1.orario='$orario' and t1.data='$data' group by t2.num_gruppo,t2.id_gruppo order by t2.num_gruppo " ;
|
---|
| 64 |
|
---|
| 65 |
|
---|
[2] | 66 | else
|
---|
[265] | 67 | $sql="select sum(t3.voti_complessivi),0,0 from ".$prefix."_ele_voti_parziale as t3 left join ".$prefix."_ele_sezioni as t1 on t3.id_sez=t1.id_sez left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t3.id_cons='$id_cons' and t3.data='$data' and t3.orario='$orario' $circos";
|
---|
[279] | 68 | $res1 = $dbi->prepare("$sql");
|
---|
| 69 | $res1->execute();
|
---|
[265] | 70 |
|
---|
[2] | 71 | #fine modifica
|
---|
| 72 |
|
---|
| 73 |
|
---|
| 74 |
|
---|
| 75 |
|
---|
[265] | 76 | while(list($voti_t, $num_gruppo,$id_gruppo) = $res1->fetch(PDO::FETCH_NUM)) {
|
---|
[371] | 77 | if(!$id_gruppo) $id_gruppo=0;
|
---|
[2] | 78 | // $res1 = mysql_query(,$dbi);
|
---|
| 79 | // $query="select sum(voti_complessivi) from ".$prefix."_ele_voti_parziale where orario='$orario' and data='$data' and id_cons='$id_cons'";
|
---|
[265] | 80 | $sql="select sum(t3.voti_complessivi) from ".$prefix."_ele_voti_parziale as t3 left join ".$prefix."_ele_sezioni as t1 on t3.id_sez=t1.id_sez left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t3.id_cons='$id_cons' and t3.data='$data' and t3.orario='$orario' $circos";
|
---|
| 81 | if ($genere==0){$sql.=" and t3.id_gruppo=$id_gruppo";}
|
---|
| 82 | $res_aff = $dbi->prepare("$sql");
|
---|
| 83 | $res_aff->execute();
|
---|
| 84 |
|
---|
| 85 | $voti_numero=$res_aff->rowCount();
|
---|
[2] | 86 | // $query="select sum(maschi+femmine) from ".$prefix."_ele_voti_parziale as t1 , ".$prefix."_ele_sezioni as t2 where t1.id_cons=$id_cons and t1.id_sez=t2.id_sez and orario='$orario' and data='$data'";
|
---|
[265] | 87 | $sql="select sum(t1.maschi+t1.femmine) from ".$prefix."_ele_voti_parziale as t3 left join ".$prefix."_ele_sezioni as t1 on t3.id_sez=t1.id_sez left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t3.id_cons='$id_cons' and t3.data='$data' and t3.orario='$orario' $circos";
|
---|
[2] | 88 |
|
---|
[265] | 89 | if ($genere==0){$sql.=" and id_gruppo=$id_gruppo";}
|
---|
| 90 | $res1234 = $dbi->prepare("$sql");
|
---|
| 91 | $res1234->execute();
|
---|
| 92 |
|
---|
| 93 | list($tot)=$res1234->fetch(PDO::FETCH_NUM);
|
---|
[2] | 94 | if ($tot)
|
---|
| 95 | $perc=number_format($voti_t*100/$tot,2);
|
---|
[265] | 96 | else {$tot=0;$perc="0.00";}
|
---|
| 97 | echo "<table class=\"td-80\"><tr class=\"bggray\">";
|
---|
[2] | 98 | if ($genere==0){echo "<td>N.</td>";}
|
---|
[265] | 99 | echo "<td><b>"._VOTANTI."</b></td><td><b>"._PERCE."</b></td>";
|
---|
| 100 | echo "<td><b>"._SEZIONI."</b></td>";
|
---|
| 101 | echo "</tr>";
|
---|
[2] | 102 | echo "<tr class=\"bggray2\">";
|
---|
| 103 | if ($genere==0){echo "<td>$num_gruppo</td>";}
|
---|
| 104 | // echo "<td>$voti_t</td><td>$perc %</td><td>$numero</td>
|
---|
| 105 | echo "<td>$voti_t</td><td>$perc %</td><td>$numero</td>
|
---|
| 106 | </tr></table>";
|
---|
| 107 |
|
---|
| 108 |
|
---|
| 109 | // barre
|
---|
| 110 |
|
---|
| 111 | echo "<table><tr><td><table><tr><td> </td><td>
|
---|
[371] | 112 | <img src=\"modules/Elezioni/images/barre/leftbar2.jpg\" height=\"$l_size2[1]\" width=\"$l_size2[0]\" alt=\"\" /><img src=\"modules/Elezioni/images/barre/mainbar2.jpg\" alt=\"\" height=\"$m_size2[1]\" width=\"". ($perc * 1)."\" /><img src=\"modules/Elezioni/images/barre/rightbar2.jpg\" height=\"$r_size2[1]\" width=\"$r_size2[0]\" alt=\"\" /><span class=\"red\"> $perc</span> % <br /></td></tr>\n";
|
---|
[2] | 113 |
|
---|
| 114 | $tot_gen=$tot;
|
---|
| 115 |
|
---|
| 116 |
|
---|
[371] | 117 | echo "<tr><td></td><td><img src=\"modules/Elezioni/images/barre/leftbar.jpg\" height=\"$l_size[1]\" width=\"$l_size[0]\" alt=\"\" /><img src=\"modules/Elezioni/images/barre/mainbar.jpg\" alt=\"\" height=\"$m_size[1]\" width=\"".(100 * 1)."\" /><img src=\"modules/Elezioni/images/barre/rightbar.jpg\" height=\"$r_size[1]\" width=\"$r_size[0]\" alt=\"\" /> 100 % </td></tr></table>";
|
---|
[2] | 118 | echo "</td></tr></table>";
|
---|
| 119 |
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | }
|
---|
| 123 | }
|
---|
| 124 | ?>
|
---|