Changeset 258 for trunk/admin/modules/Elezioni/controllo_voti.php
- Timestamp:
- Apr 4, 2019, 11:16:00 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/controllo_voti.php
r256 r258 16 16 17 17 $aid=$_SESSION['aid']; 18 $dbi=$_SESSION['dbi'];18 global $dbi; 19 19 $prefix=$_SESSION['prefix']; 20 20 $currentlang=$_SESSION['lang']; … … 29 29 $sth = $dbi->prepare("$sql"); 30 30 $sth->execute(); 31 $row = $sth->fetch(PDO::FETCH_BOTH); 32 list($tipo_cons,$id_cons,$dettnulli,$disgiunto) = explode($row); 31 list($tipo_cons,$id_cons,$dettnulli,$disgiunto) = $sth->fetch(PDO::FETCH_BOTH); 33 32 $sql="SELECT genere,voto_g,voto_l FROM ".$prefix."_ele_tipo where tipo_cons='$tipo_cons'"; 34 33 $sth = $dbi->prepare("$sql"); 35 34 $sth->execute(); 36 $row = $sth->fetch(PDO::FETCH_BOTH);37 list($genere,$votog,$votol) = explode($row);35 $row = 36 list($genere,$votog,$votol) = $sth->fetch(PDO::FETCH_NUM); 38 37 include("modules/Elezioni/funzionidata.php"); 39 38 include("modules/Elezioni/ele.php"); … … 52 51 $sth = $dbi->prepare("$sql"); 53 52 $sth->execute(); 54 $row = $sth->fetch(PDO::FETCH_BOTH);55 list($totm,$totf) = explode($row);53 # $row = $sth->fetch(PDO::FETCH_BOTH); 54 list($totm,$totf) = $sth->fetch(PDO::FETCH_NUM); 56 55 $totel=$totm+$totf; 57 56 if (!IsSet($pag)) {$pag=0;} //inizializza il numero di pagina … … 61 60 $sth = $dbi->prepare("$sql"); 62 61 $sth->execute(); 63 $row = $sth->fetch(PDO::FETCH_BOTH);64 62 $num_refs= $sth->rowCount(); //quante pagine? 63 # $row = $sth->fetch(PDO::FETCH_BOTH); 65 64 } 66 65 if((($genere!=4) and $pag==0 and !$votog) or $genere==1 or $genere==2){ //diverso da liste a piu' candidati … … 73 72 $sth = $dbi->prepare("$sql"); 74 73 $sth->execute(); 75 $row = $sth->fetch(PDO::FETCH_BOTH);76 list($idg,$numg) = explode($row);74 # $row = $sth->fetch(PDO::FETCH_BOTH); 75 list($idg,$numg) = $sth->fetch(PDO::FETCH_BOTH); 77 76 $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"; 78 77 $sth = $dbi->prepare("$sql"); 79 78 $sth->execute(); 80 79 $num_sez = $sth->rowCount(); //quante sezioni? 80 $sezione=array(); 81 81 for ($i=1;$i<=$num_sez;$i++){ 82 $sezione[$i]== $sth->fetch(PDO::FETCH_BOTH); //inizializza l'array delle sezioni 82 $sezione[$i]=array(); 83 $sezione[$i]= $sth->fetch(PDO::FETCH_BOTH); //inizializza l'array delle sezioni 83 84 $ar[$i]=0; 84 85 } … … 127 128 // if ($genere>1 and $pag==1) $ops=3; 128 129 $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;$tgrup_pref=0;$tot_voti_nulli=0;$tot_val_lista=0;$tot_vot_nul_lis=0;$tot_cont_lis=0;$tot_solog=0;$tot_solol=0;$errors=0; 129 while ( $row = $sth->fetch(PDO::FETCH_BOTH)){130 while ( list($id_gruppo,$id,$num,$si,$no,$validi,$nulli,$bianchi,$contestati,$id_circ,$id_sede,$gruppo,$voti_nulli,$val_lista,$vot_nul_lis,$cont_lis,$solog,$solol) = $sth->fetch(PDO::FETCH_NUM)){ 130 131 //controllare 131 list($id_gruppo,$id,$num,$si,$no,$validi,$nulli,$bianchi,$contestati,$id_circ,$id_sede,$gruppo,$voti_nulli,$val_lista,$vot_nul_lis,$cont_lis,$solog,$solol) = explode($row);132 132 // inserimento numeri di sez non scrutinate 133 133 while ($scrutinate < $num) { … … 141 141 $sth2 = $dbi->prepare("$sql"); 142 142 $sth2->execute(); 143 $row2 = $sth2->fetch(PDO::FETCH_BOTH); 144 list ($gruppref) = explode($row2); 143 list ($gruppref) = $sth2->fetch(PDO::FETCH_NUM); 145 144 $tgrup_pref += $gruppref; 146 145 } … … 149 148 $sth2 = $dbi->prepare("$tab2"); 150 149 $sth2->execute(); 151 $row2 = $sth2->fetch(PDO::FETCH_BOTH); 152 list($votid,$votiu,$voti) = explode($row2); 150 list($votid,$votiu,$voti) = $sth2->fetch(PDO::FETCH_NUM); 153 151 // $voti=$votiu+$votid; 154 152 … … 185 183 $sth2 = $dbi->prepare("select stato_lis from ".$prefix."_ele_controllosez where id_cons='$id_cons' and id_sez='$id'"); 186 184 $sth2->execute(); 187 $row2 = $sth2->fetch(PDO::FETCH_BOTH); 188 list($crlis) = explode($row2); 185 list($crlis) = $sth2->fetch(PDO::FETCH_NUM); 189 186 190 187 if ($voti==$controllo1 and $validi==$controllo2 and !$g_err and $crlis!=-1){
Note:
See TracChangeset
for help on using the changeset viewer.