Changeset 265 for trunk/client/modules/Elezioni/candidato.php
- Timestamp:
- Apr 13, 2019, 8:05:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/candidato.php
r254 r265 28 28 29 29 # numero sezioni 30 $sql = mysql_query("select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' ",$dbi); 31 $sezioni = mysql_num_rows($sql); 30 $sql = "select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' "; 31 $res = $dbi->prepare("$sql"); 32 $res->execute(); 33 34 $sezioni = $res->rowCount(); 32 35 33 36 … … 125 128 # conta il numero dei candidati 126 129 if ($circo=="1"){ 127 $res = mysql_query("select id_lista from ".$prefix."_ele_lista where id_cons='$id_cons' and id_circ='$id_circ'", $dbi); 128 while(list($id_lista2) = mysql_fetch_row($res)){ 129 $res2 = mysql_query("select id_cand from ".$prefix."_ele_candidati where id_lista='$id_lista2' and cognome like \"$lettera%\"", $dbi); 130 while(list($id_cand2) = mysql_fetch_row($res2)){ 130 $sql="select id_lista from ".$prefix."_ele_lista where id_cons='$id_cons' and id_circ='$id_circ'"; 131 $res = $dbi->prepare("$sql"); 132 $res->execute(); 133 while(list($id_lista2) = $res->fetch(PDO::FETCH_NUM)){ 134 $sql="select id_cand from ".$prefix."_ele_candidati where id_lista='$id_lista2' and cognome like \"$lettera%\""; 135 $res2 = $dbi->prepare("$sql"); 136 $res2->execute(); 137 while(list($id_cand2) = $res2->fetch(PDO::FETCH_NUM)){ 131 138 $max=$max+1; 132 139 } … … 135 142 }else{ 136 143 137 $res = mysql_query("SELECT id_cons FROM ".$prefix."_ele_candidati where id_cons='$id_cons' and cognome like \"$lettera%\" ", $dbi); 138 if($res) $max = mysql_num_rows($res); 144 $sql="SELECT id_cons FROM ".$prefix."_ele_candidati where id_cons='$id_cons' and cognome like \"$lettera%\" "; 145 $res = $dbi->prepare("$sql"); 146 $res->execute(); 147 if($res) $max = $res->rowCount(); 139 148 140 149 } … … 158 167 159 168 if ($ordine=="id_gruppo") $ordine="id_lista"; 160 $result = mysql_query("select * from ".$prefix."_ele_candidati where id_cons='$id_cons' and cognome like \"$lettera%\" order by $ordine LIMIT $min,$offset", $dbi); 161 162 163 while(list($id_cand,$id_cons2,$id_lista, $cognome, $nome, $note,, $num_cand) = mysql_fetch_row($result)) { 169 $sql="select * from ".$prefix."_ele_candidati where id_cons='$id_cons' and cognome like \"$lettera%\" order by $ordine LIMIT $min,$offset"; 170 $result = $dbi->prepare("$sql"); 171 $result->execute(); 172 173 174 while(list($id_cand,$id_cons2,$id_lista, $cognome, $nome, $note,, $num_cand) = $result->fetch(PDO::FETCH_NUM)) { 164 175 if ($circo=="1") $circos=" and id_circ='$id_circ'";else $circos='';// per circosc 5-06 165 176 // dati lista 166 $res01 = mysql_query("select descrizione,id_gruppo,id_circ from ".$prefix."_ele_lista where id_lista='$id_lista' $circos ", $dbi); 167 168 if ($circo=="1") list($descr_lista,$id_gruppo,$id_circ2)=mysql_fetch_row($res01); 169 else list($descr_lista,$id_gruppo,$id_circ_off)=mysql_fetch_row($res01); 177 $sql="select descrizione,id_gruppo,id_circ from ".$prefix."_ele_lista where id_lista='$id_lista' $circos "; 178 $res01 = $dbi->prepare("$sql"); 179 $res01->execute(); 180 181 if ($circo=="1") list($descr_lista,$id_gruppo,$id_circ2)=$res01->fetch(PDO::FETCH_NUM); 182 else list($descr_lista,$id_gruppo,$id_circ_off)=$res01->fetch(PDO::FETCH_NUM); 170 183 171 184 … … 173 186 174 187 if ($genere!=4){ 175 $res2 = mysql_query("select descrizione from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo' ", $dbi); 176 list($descr_gruppo)=mysql_fetch_row($res2); 188 $sql="select descrizione from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo' "; 189 $res2 = $dbi->prepare("$sql"); 190 $res2->execute(); 191 list($descr_gruppo)=$res2->fetch(PDO::FETCH_NUM); 177 192 178 193 }
Note:
See TracChangeset
for help on using the changeset viewer.