Changeset 208 for trunk/admin/modules/Elezioni/ele_riepilogo.php
- Timestamp:
- May 11, 2014, 12:49:20 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/ele_riepilogo.php
r174 r208 47 47 list($totm,$totf) = mysql_fetch_row($res); 48 48 $totel=$totm+$totf; 49 $res = mysql_query("SELECT data,orario FROM `soraldo_ele_rilaff`where id_cons_gen=$id_cons_gen order by data desc, orario desc limit 0,1", $dbi);49 $res = mysql_query("SELECT data,orario FROM ".$prefix."_ele_rilaff where id_cons_gen=$id_cons_gen order by data desc, orario desc limit 0,1", $dbi); 50 50 list($giorno,$ora)=mysql_fetch_row($res); 51 51 $res = mysql_query("SELECT sum(voti_donne),sum(voti_uomini),sum(voti_complessivi) FROM ".$prefix."_ele_voti_parziale where id_cons='$id_cons' and data='$giorno' and orario='$ora'", $dbi); … … 66 66 if ($genere==5 and !$votog) { 67 67 $totnullil=$nullilista+$contestatilista; 68 $id_conf=0; 69 $res = mysql_query("SELECT t1.id_conf,t1.id_fascia, t2.limite from ".$prefix."_ele_cons_comune as t1 left join ".$prefix."_ele_conf as t2 on t1.id_conf=t2.id_conf where t1.id_cons='$id_cons'", $dbi); 70 if($res) list($id_conf,$fascia,$limite) = mysql_fetch_row($res); 71 if ($id_conf and $fascia<=$limite) { 68 72 echo "<fieldset><legend>"._VOTI_LISTA."</legend>"; 73 echo "<table border=\"1\" width=\"100%\"><tr><th><b>"._VALIDI."</b></th><th>"._NULLI."</th><th>"._BIANCHI."</th><th>"._CONTESTATI."</th><th>"._VOTINULLI."</th><th>"._TOTNON."</th></TR>"; 74 ECHO "<TR><TH>".number_format($validi,0,',','.')."</TH><TH>".number_format($nulli,0,',','.')."</TH><TH>".number_format($bianchi,0,',','.')."</TH><TH>".number_format($contestati,0,',','.')."</TH><TH>".number_format($votinulli,0,',','.')."</TH><TH>".number_format($totnulli,0,',','.')."</TH></TR></table><br/>"; 75 ECHO "</fieldset><br/><br/><br/>"; 76 }else{ 77 echo "<fieldset><legend>"._VOTI_LISTA."</legend>"; 69 78 echo "<table border=\"1\" width=\"100%\"><tr><th>"._VALIDI."</th><th>"._VOTINULLI."</th><th>"._CONTESTATI."</th>"; 70 79 // if ($genere==5 and !$votog) 71 80 echo "<th>"._SOLO_GRUPPO."</th>"; 72 81 echo "<th>"._TOTNON."</th></TR>"; 73 ECHO "<TR><TH>".number_format($validilista,0,',','.')."</TH><TH>".number_format($nullilista,0,',','.')."</TH><TH>".number_format($contestatilista,0,',','.')."</TH>"; 82 83 ECHO "<TR><TH>".number_format($validilista,0,',','.')."</TH><TH>".number_format($nullilista,0,',','.')."</TH><TH>".number_format($contestatilista,0,',','.')."</TH>"; 74 84 if($genere==5 and !$votog) 75 85 echo "<TH>".number_format($sg,0,',','.')."</TH>"; 76 86 echo "<TH>".number_format($totnullil,0,',','.')."</TH></TR></table><br/>"; 77 87 ECHO "</fieldset>"; 88 } 78 89 } 79 90 echo "</center>";
Note:
See TracChangeset
for help on using the changeset viewer.