Changeset 265 for trunk/client/temi
- Timestamp:
- Apr 13, 2019, 8:05:15 PM (6 years ago)
- Location:
- trunk/client/temi
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/temi/Futura2/function_theme.php
r231 r265 13 13 14 14 15 $res = $db->sql_query("SELECT t1.descrizione, t1.tipo_cons,t2.genere, t2.voto_g, t2.voto_l, t2.voto_c, t2.circo FROM ".$prefix."_ele_consultazione as t1,".$prefix."_ele_tipo as t2 where t1.tipo_cons=t2.tipo_cons and t1.id_cons_gen='$id_cons_gen' "); 16 list($descr_cons,$tipo_cons,$genere,$votog,$votol,$votoc,$circo) = $db->sql_fetchrow($res); 17 $res = $db->sql_query("SELECT t2.id_cons FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.id_comune='$id_comune'" ); 18 list($id_cons) = $db->sql_fetchrow($res); 15 $sql="SELECT t1.descrizione, t1.tipo_cons,t2.genere, t2.voto_g, t2.voto_l, t2.voto_c, t2.circo FROM ".$prefix."_ele_consultazione as t1,".$prefix."_ele_tipo as t2 where t1.tipo_cons=t2.tipo_cons and t1.id_cons_gen='$id_cons_gen' "; 16 $res = $dbi->prepare("$sql"); 17 $res->execute(); 18 list($descr_cons,$tipo_cons,$genere,$votog,$votol,$votoc,$circo) = $res->fetch(PDO::FETCH_NUM); 19 $sql="SELECT t2.id_cons FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.id_comune='$id_comune'"; 20 $res = $dbi->prepare("$sql"); 21 $res->execute(); 22 list($id_cons) = $res->fetch(PDO::FETCH_NUM); 19 23 20 24 /*********************************/ … … 35 39 36 40 37 $res = mysql_query("select t1.* from ".$prefix."_ele_voti_".$tab." as t1 left join ".$prefix."_ele_$tab as t2 on t1.id_gruppo=t2.id_gruppo where t1.id_cons='$id_cons' $circos group by t1.id_sez ",$dbi); 41 $sql="select t1.* from ".$prefix."_ele_voti_".$tab." as t1 left join ".$prefix."_ele_$tab as t2 on t1.id_$tab=t2.id_$tab where t1.id_cons='$id_cons' $circos group by t1.id_sez "; 42 $res = $dbi->prepare("$sql"); 43 $res->execute(); 38 44 if($res) 39 $numero= mysql_num_rows($res);45 $numero=$res->rowCount(); 40 46 else 41 47 $numero=1; 42 $res = mysql_query("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",$dbi); 43 $sezioni=mysql_num_rows($res); 48 $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"; 49 $res = $dbi->prepare("$sql"); 50 $res->execute(); 51 $sezioni=$res->rowCount(); 44 52 if ($numero!=0){ 45 53 … … 47 55 48 56 49 $res1 = mysql_query("SELECT sum(maschi+femmine) 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",$dbi); 50 list($tot_aventi) = mysql_fetch_row($res1); 57 $sql="SELECT sum(maschi+femmine) 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"; 58 $res1 = $dbi->prepare("$sql"); 59 $res1->execute(); 60 list($tot_aventi) = $res1->fetch(PDO::FETCH_NUM); 51 61 52 62 if ($genere!=0) { … … 57 67 echo "</h2></center></li>"; 58 68 59 $ res1 = mysql_query("SELECT sum(validi+nulli+bianchi+contestati) as tot,69 $sql="SELECT sum(validi+nulli+bianchi+contestati) as tot, 60 70 sum(validi),sum(nulli),sum(bianchi),sum(contestati), '0' 61 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 having tot>0",$dbi); 71 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 having tot>0"; 72 $res1 = $dbi->prepare("$sql"); 73 $res1->execute(); 62 74 }else{ 63 75 64 76 if($tema=='tour'){ 65 $res1 = mysql_query("SELECT count(0) 66 from ".$prefix."_ele_gruppo where id_cons=$id_cons",$dbi); 67 68 list($max_ruotag) =mysql_fetch_row($res1); 77 $sql="SELECT count(0) 78 from ".$prefix."_ele_gruppo where id_cons=$id_cons"; 79 $res1 = $dbi->prepare("$sql"); 80 $res1->execute(); 81 82 list($max_ruotag) = $res1->fetch(PDO::FETCH_NUM); 69 83 if (isset($_SESSION['ruotag'])) { $ruotag=$_SESSION['ruotag'];} 70 84 else {$ruotag=1;$_SESSION['ruotag']=1;} … … 72 86 else {$ruotag++;} 73 87 $_SESSION['ruotag']=$ruotag; 74 $res1 = mysql_query("SELECT count(0) from ".$prefix."_ele_voti_ref AS t1 LEFT JOIN ".$prefix."_ele_gruppo AS t2 ON t1.id_gruppo = t2.id_gruppo WHERE t1.id_cons ='$id_cons' AND t2.num_gruppo ='$ruotag'",$dbi); 75 list($numero)=mysql_fetch_row($res1); 88 $sql="SELECT count(0) from ".$prefix."_ele_voti_ref AS t1 LEFT JOIN ".$prefix."_ele_gruppo AS t2 ON t1.id_gruppo = t2.id_gruppo WHERE t1.id_cons ='$id_cons' AND t2.num_gruppo ='$ruotag'"; 89 $res1 = $dbi->prepare("$sql"); 90 $res1->execute(); 91 list($numero)=$res1->fetch(PDO::FETCH_NUM); 76 92 echo "<li data-role=\"list-divider\" data-icon=\"arrow-up\" >"; 77 93 echo "<center><h2>"; … … 80 96 echo "</h2></center></li>"; 81 97 82 $ res1 = mysql_query("SELECT sum( t1.validi + t1.nulli + t1.bianchi + t1.contestati ) AS tot, sum( t1.validi ) , sum( t1.nulli ) , sum( t1.bianchi ) , sum( t1.contestati ) , t1.id_gruppo98 $sql="SELECT sum( t1.validi + t1.nulli + t1.bianchi + t1.contestati ) AS tot, sum( t1.validi ) , sum( t1.nulli ) , sum( t1.bianchi ) , sum( t1.contestati ) , t1.id_gruppo 83 99 FROM ".$prefix."_ele_voti_ref AS t1 LEFT JOIN ".$prefix."_ele_gruppo AS t2 ON t1.id_gruppo = t2.id_gruppo 84 WHERE t1.id_cons ='$id_cons' AND t2.num_gruppo ='$ruotag' GROUP BY t1.id_gruppo HAVING tot >0",$dbi); 100 WHERE t1.id_cons ='$id_cons' AND t2.num_gruppo ='$ruotag' GROUP BY t1.id_gruppo HAVING tot >0"; 101 $res1 = $dbi->prepare("$sql"); 102 $res1->execute(); 85 103 } else 86 $ res1 = mysql_query("SELECT sum(validi+nulli+bianchi+contestati) as tot,104 $sql="SELECT sum(validi+nulli+bianchi+contestati) as tot, 87 105 sum(validi),sum(nulli),sum(bianchi),sum(contestati), id_gruppo 88 from ".$prefix."_ele_voti_ref where id_cons=$id_cons group by id_gruppo having tot>0",$dbi); 106 from ".$prefix."_ele_voti_ref where id_cons=$id_cons group by id_gruppo having tot>0"; 107 $res1 = $dbi->prepare("$sql"); 108 $res1->execute(); 89 109 } 90 while (list($tot_votanti,$validi,$nulli,$bianchi,$contestati,$id) = mysql_fetch_row($res1)){110 while (list($tot_votanti,$validi,$nulli,$bianchi,$contestati,$id) = $res1->fetch(PDO::FETCH_NUM)){ 91 111 $arperc=array(); 92 112 $arval=array($validi,$nulli,$bianchi,$contestati); … … 102 122 103 123 if ($genere==0) { 104 $res = mysql_query("SELECT num_gruppo,descrizione from ".$prefix."_ele_gruppo where id_gruppo=$id",$dbi); 105 list($num_gruppo,$descr_gruppo) = mysql_fetch_row($res); 124 $sql="SELECT num_gruppo,descrizione from ".$prefix."_ele_gruppo where id_gruppo=$id"; 125 $res = $dbi->prepare("$sql"); 126 $res->execute(); 127 list($num_gruppo,$descr_gruppo) = $res->fetch(PDO::FETCH_NUM); 106 128 } 107 129 … … 156 178 157 179 if (!$id_circ and $circo){ 158 $res_sez = $db->sql_query("SELECT id_circ from ".$prefix."_ele_circoscrizione where id_cons=$id_cons order by num_circ limit 0,1"); 159 list($id_circ)=$db->sql_fetchrow($res_sez); 180 $sql="SELECT id_circ from ".$prefix."_ele_circoscrizione where id_cons=$id_cons order by num_circ limit 0,1"; 181 $res_sez = $dbi->prepare("$sql"); 182 $res_sez->execute(); 183 list($id_circ)=$res_sez->fetch(PDO::FETCH_NUM); 160 184 } 161 185 $circond='';$circondt1=''; … … 163 187 if ($genere==4 or $visgralista){$tab="ele_voti_lista";} 164 188 if ($votog){$tab="ele_voti_lista";} 165 $res = $db->sql_query("select * from ".$prefix."_$tab where id_cons='$id_cons' group by id_sez "); 189 $sql="select * from ".$prefix."_$tab where id_cons='$id_cons' group by id_sez "; 190 $res = $dbi->prepare("$sql"); 191 $res->execute(); 166 192 if ($circo){ 167 $res = $db->sql_query("select t1.* from ".$prefix."_ele_voti_gruppo as t1, ".$prefix."_ele_gruppo as t2 where t1.id_gruppo=t2.id_gruppo and t1.id_cons='$id_cons' and t2.id_circ=$id_circ group by t1.id_sez "); 168 $restotv = $db->sql_query("select sum(t1.voti) from ".$prefix."_ele_voti_gruppo as t1, ".$prefix."_ele_gruppo as t2 where t1.id_gruppo=t2.id_gruppo and t1.id_cons='$id_cons' and t2.id_circ=$id_circ"); 193 $sql="select t1.* from ".$prefix."_ele_voti_gruppo as t1, ".$prefix."_ele_gruppo as t2 where t1.id_gruppo=t2.id_gruppo and t1.id_cons='$id_cons' and t2.id_circ=$id_circ group by t1.id_sez "; 194 $res = $dbi->prepare("$sql"); 195 $res->execute(); 196 197 $sql="select sum(t1.voti) from ".$prefix."_ele_voti_gruppo as t1, ".$prefix."_ele_gruppo as t2 where t1.id_gruppo=t2.id_gruppo and t1.id_cons='$id_cons' and t2.id_circ=$id_circ"; 169 198 $circond="and id_circ=$id_circ";$circondt1="and t1.id_circ=$id_circ"; 199 $restotv = $dbi->prepare("$sql"); 200 $restotv->execute(); 170 201 } 171 if ($res) $numero=$db->sql_numrows($res);else $numero=0; 172 $res = $db->sql_query("select t2.* from ".$prefix."_ele_sezioni as t2, ".$prefix."_ele_sede as t1 where t2.id_cons='$id_cons' and t1.id_sede=t2.id_sede $circondt1"); 173 if ($res) $sezioni=$db->sql_numrows($res);else $sezioni=0; 202 if ($res) $numero=$res->rowCount();else $numero=0; 203 $sql="select t2.* from ".$prefix."_ele_sezioni as t2, ".$prefix."_ele_sede as t1 where t2.id_cons='$id_cons' and t1.id_sede=t2.id_sede $circondt1"; 204 $res = $dbi->prepare("$sql"); 205 $res->execute(); 206 if ($res) $sezioni=$res->rowCount();else $sezioni=0; 174 207 175 208 … … 184 217 // tot voti 185 218 if (!$circo) 186 $ restotv = $db->sql_query("select sum(voti) from ".$prefix."_$tab where id_cons=$id_cons ");219 $sql="select sum(voti) from ".$prefix."_$tab where id_cons=$id_cons "; 187 220 if ($votog) 188 $restotv = $db->sql_query("select sum(voti) from ".$prefix."_ele_voti_lista where id_cons=$id_cons "); 189 list($tot) = $db->sql_fetchrow($restotv); 221 $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons=$id_cons "; 222 $restotv = $dbi->prepare("$sql"); 223 $restotv->execute(); 224 list($tot) = $restotv->fetch(PDO::FETCH_NUM); 190 225 191 226 $i=0; … … 195 230 if ($votog){ 196 231 197 $ res = $db->sql_query("select t1.id_gruppo, t1.num_gruppo, t1.descrizione, sum(t2.voti) as somma232 $sql="select t1.id_gruppo, t1.num_gruppo, t1.descrizione, sum(t2.voti) as somma 198 233 from ".$prefix."_ele_gruppo as t1, 199 234 ".$prefix."_ele_voti_lista as t2, … … 203 238 and t1.id_gruppo=t3.id_gruppo 204 239 group by t1.id_gruppo 205 order by somma desc");$cosa='id_gruppo'; 240 order by somma desc"; 241 $cosa='id_gruppo'; 206 242 207 243 }else{ 208 244 209 245 210 $ res = $db->sql_query("select t1.id_gruppo, t1.num_gruppo, t1.descrizione, sum(t2.voti) as somma246 $sql="select t1.id_gruppo, t1.num_gruppo, t1.descrizione, sum(t2.voti) as somma 211 247 from ".$prefix."_ele_gruppo as t1 212 248 left join ".$prefix."_$tab as t2 on (t1.id_gruppo=t2.id_gruppo) 213 249 where t1.id_cons='$id_cons' and t1.id_cons=t2.id_cons $circondt1 214 250 group by t2.id_gruppo 215 order by somma desc");$cosa='id_gruppo'; 251 order by somma desc"; 252 $cosa='id_gruppo'; 216 253 } 254 $res = $dbi->prepare("$sql"); 255 $res->execute(); 217 256 218 257 219 258 }else{ 220 $ res = $db->sql_query("select t1.id_lista, t1.num_lista, t1.descrizione, sum(t2.voti) as somma259 $sql="select t1.id_lista, t1.num_lista, t1.descrizione, sum(t2.voti) as somma 221 260 from ".$prefix."_ele_lista as t1 222 261 left join ".$prefix."_$tab as t2 on (t1.id_lista=t2.id_lista) 223 262 where t1.id_cons='$id_cons' and t1.id_cons=t2.id_cons 224 263 group by t2.id_lista 225 order by somma desc");$cosa='id_lista'; 264 order by somma desc"; 265 $res = $dbi->prepare("$sql"); 266 $res->execute(); 267 $cosa='id_lista'; 226 268 } 227 269 … … 234 276 $e=1; 235 277 // fine 236 $gruppinum=$ db->sql_numrows($res);278 $gruppinum=$res->rowCount(); 237 279 $altrivoti=0; 238 280 ####calcolo percentuale 239 281 $arvoti=array(); 240 282 $arperc=array(); 241 while (list($id,$num,$descrizione,$voti) = $ db->sql_fetchrow($res)){283 while (list($id,$num,$descrizione,$voti) = $res->fetch(PDO::FETCH_NUM)){ 242 284 $arvoti[$id]=$voti; 243 285 } 244 286 $arperc=arrayperc($arvoti,$tot); 245 287 //$db->sql_data_seek($res,0); 246 mysql_data_seek($res,0); 288 $res = $dbi->prepare("$sql"); 289 $res->execute(); 290 # mysql_data_seek($res,0); 247 291 #### 248 292 $altriperc=0; 249 while (list($id,$num,$descrizione,$voti) = $ db->sql_fetchrow($res)){293 while (list($id,$num,$descrizione,$voti) = $res->fetch(PDO::FETCH_NUM)){ 250 294 251 295 … … 335 379 }else{ 336 380 // tot voti 337 $res = $db->sql_query(" 338 select sum(validi),id_gruppo from ".$prefix."_$tab where id_cons=$id_cons group by id_gruppo"); 339 while (list($tot,$id_gruppo) = $db->sql_fetchrow($res)){ 381 $sql=" 382 select sum(validi),id_gruppo from ".$prefix."_$tab where id_cons=$id_cons group by id_gruppo"; 383 $res = $dbi->prepare("$sql"); 384 $res->execute(); 385 while (list($tot,$id_gruppo) = $res->fetch(PDO::FETCH_NUM)){ 340 386 341 387 $s=0; 342 $ res1 = $db->sql_query("select t1.id_gruppo, t1.num_gruppo, t1.descrizione, sum(t2.si), sum(t2.no)388 $sql="select t1.id_gruppo, t1.num_gruppo, t1.descrizione, sum(t2.si), sum(t2.no) 343 389 from ".$prefix."_ele_gruppo as t1 344 390 left join ".$prefix."_$tab as t2 on (t1.id_gruppo=t2.id_gruppo) 345 391 where t1.id_cons='$id_cons' and t1.id_gruppo='$id_gruppo' 346 392 group by t1.id_gruppo 347 "); 348 349 350 while (list($id_gruppo,$num_gruppo,$descrizione,$si,$no) = $db->sql_fetchrow($res1)){ 393 "; 394 $res1 = $dbi->prepare("$sql"); 395 $res1->execute(); 396 397 398 while (list($id_gruppo,$num_gruppo,$descrizione,$si,$no) = $res1->fetch(PDO::FETCH_NUM)){ 351 399 if($tot){ 352 400 $percsi=number_format($si*100/$tot,3); … … 426 474 if ($circo) $circos = "and id_circ=$id_circ" ; else $circos=''; 427 475 if ($genere==0) $tab="ref"; else $tab="gruppo"; 428 $res = mysql_query("select * from ".$prefix."_ele_voti_".$tab." where id_cons='$id_cons' $circos group by id_sez ",$dbi); 429 $numero=mysql_num_rows($res); 430 $res = mysql_query("select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos ",$dbi); 431 $sezioni=mysql_num_rows($res); 476 $sql="select * from ".$prefix."_ele_voti_".$tab." where id_cons='$id_cons' $circos group by id_sez "; 477 $res = $dbi->prepare("$sql"); 478 $res->execute(); 479 $numero=$res->rowCount(); 480 $sql="select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos "; 481 $res = $dbi->prepare("$sql"); 482 $res->execute(); 483 $sezioni=$res->rowCount(); 432 484 //$res = mysql_query("select chiusa from ".$prefix."_ele_cons_comuni where id_cons='$id_cons' $circos ",$dbi); 433 485 //$chiusa=mysql_num_rows($res); … … 444 496 445 497 // tot liste 446 $res = mysql_query("SELECT * FROM ".$prefix."_ele_lista where id_cons='$id_cons' ", $dbi); 447 $max = mysql_num_rows($res); 498 $sql="SELECT * FROM ".$prefix."_ele_lista where id_cons='$id_cons' "; 499 $res = $dbi->prepare("$sql"); 500 $res->execute(); 501 $max = $res->rowCount(); 448 502 449 503 // tot voti liste 450 $res_lista_tutti = mysql_query("select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons'", $dbi); 451 list($voti_lista_tutti) = mysql_fetch_row($res_lista_tutti); 452 453 $result = mysql_query("select id_cons ,id_lista ,id_gruppo, num_lista, descrizione from ".$prefix."_ele_lista where id_cons='$id_cons' ORDER BY num_lista LIMIT $min,$offset", $dbi); 454 while(list($id_cons2,$id_lista,$id_gruppo, $num_lista, $descr_lista) = mysql_fetch_row($result)) { 504 $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons'"; 505 $res_lista_tutti = $dbi->prepare("$sql"); 506 $res_lista_tutti->execute(); 507 list($voti_lista_tutti) = $res_lista_tutti->fetch(PDO::FETCH_NUM); 508 509 $sql="select id_cons ,id_lista ,id_gruppo, num_lista, descrizione from ".$prefix."_ele_lista where id_cons='$id_cons' ORDER BY num_lista LIMIT $min,$offset"; 510 $result = $dbi->prepare("$sql"); 511 $result->execute(); 512 while(list($id_cons2,$id_lista,$id_gruppo, $num_lista, $descr_lista) = $result->fetch(PDO::FETCH_NUM)) { 455 513 if ($num_lista!=0) { 456 514 // voti lista 457 $res_lista = mysql_query("select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons' and id_lista='$id_lista'", $dbi); 458 list($voti_lista) = mysql_fetch_row($res_lista); 515 $sql="select sum(voti) from ".$prefix."_ele_voti_lista where id_cons='$id_cons' and id_lista='$id_lista'"; 516 $res_lista = $dbi->prepare("$sql"); 517 $res_lista->execute(); 518 list($voti_lista) = $res_lista->fetch(PDO::FETCH_NUM); 459 519 if ($voti_lista_tutti!=0) 460 520 $perc_lista=number_format(($voti_lista*100)/$voti_lista_tutti,2); 461 521 else $perc_lista=''; 462 522 // gruppo 463 $res_gruppo = mysql_query("select descrizione from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'", $dbi); 464 list($descr_gruppo) = mysql_fetch_row($res_gruppo); 523 $sql="select descrizione from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'"; 524 $res_gruppo = $dbi->prepare("$sql"); 525 $res_gruppo->execute(); 526 list($descr_gruppo) = $res_gruppo->fetch(PDO::FETCH_NUM); 465 527 466 528 … … 506 568 $tab="ele_voti_candidati"; 507 569 508 $res = $db->sql_query("select * from ".$prefix."_ele_voti_candidati where id_cons='$id_cons' group by id_sez "); 509 $numero=$db->sql_numrows($res); 510 $res = $db->sql_query("select * from ".$prefix."_ele_sezioni where id_cons='$id_cons'"); 511 $sezioni=$db->sql_numrows($res); 570 $sql="select * from ".$prefix."_ele_voti_candidati where id_cons='$id_cons' group by id_sez "; 571 $res = $dbi->prepare("$sql"); 572 $res->execute(); 573 $numero=$res->rowCount(); 574 $sql="select * from ".$prefix."_ele_sezioni where id_cons='$id_cons'"; 575 $res = $dbi->prepare("$sql"); 576 $res->execute(); 577 $sezioni=$res->rowCount(); 512 578 513 579 … … 521 587 522 588 // tot voti 523 $res = $db->sql_query(" 524 select sum(voti) from ".$prefix."_ele_voti_candidati where id_cons=$id_cons "); 525 list($tot) = $db->sql_fetchrow($res); 589 $sql=" 590 select sum(voti) from ".$prefix."_ele_voti_candidati where id_cons=$id_cons "; 591 $res = $dbi->prepare("$sql"); 592 $res->execute(); 593 list($tot) = $res->fetch(PDO::FETCH_NUM); 526 594 527 595 // gruppi o liste per simbolo … … 533 601 } 534 602 $i=0; 535 $ res = $db->sql_query("select t1.id_lista, t1.id_cand, t1.nome , t1.cognome, sum(t2.voti) as somma603 $sql="select t1.id_lista, t1.id_cand, t1.nome , t1.cognome, sum(t2.voti) as somma 536 604 from ".$prefix."_ele_candidati as t1 537 605 left join ".$prefix."_ele_voti_candidati as t2 on (t1.id_cand=t2.id_cand) … … 542 610 order by somma desc 543 611 544 "); 545 $n_candi=$db->sql_numrows($res); 546 547 while (list($id_lista,$id_cand,$nome,$cognome,$voti) = $db->sql_fetchrow($res)){ 612 "; 613 $res = $dbi->prepare("$sql"); 614 $res->execute(); 615 $n_candi=$res->rowCount(); 616 617 while (list($id_lista,$id_cand,$nome,$cognome,$voti) = $res->fetch(PDO::FETCH_NUM)){ 548 618 $candidato[$i]=$cognome; 549 619 $pro[$i]=number_format($voti*100/$tot,2); … … 601 671 602 672 603 $res2 = $db->sql_query("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"); 604 $result_sezioni[1]=$db->sql_numrows($res2); 673 $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"; 674 $res2 = $dbi->prepare("$sql"); 675 $res2->execute(); 676 $result_sezioni[1]=$res2->rowCount(); 605 677 606 678 607 679 608 680 // numero sezioni 609 $sez_num = $db->sql_query("select t3.* from ".$prefix."_ele_voti_".$tab." 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' $circos group by t3.id_sez "); 610 $result_sezioni[0]=$db->sql_numrows($sez_num); 681 $sql="select t3.* from ".$prefix."_ele_voti_".$tab." 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' $circos group by t3.id_sez "; 682 $sez_num = $dbi->prepare("$sql"); 683 $sez_num->execute(); 684 $result_sezioni[0]=$sez_num->rowCount(); 611 685 612 686 // $sez_scrut = $db->sql_query("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"); … … 614 688 615 689 616 $res = $db->sql_query("select chiusa from ".$prefix."_ele_cons_comune where id_cons='$id_cons' "); 690 $sql="select chiusa from ".$prefix."_ele_cons_comune where id_cons='$id_cons' "; 691 $res = $dbi->prepare("$sql"); 692 $res->execute(); 617 693 //$chiusa=$db->sql_numrows($res); 618 list($chiusa) = $ db->sql_fetchrow($res);694 list($chiusa) = $res->fetch(PDO::FETCH_NUM); 619 695 //echo "-----------> $chiusa - $id_comune"; 620 696 … … 643 719 644 720 global $user, $admin, $cookie, $textcolor2, $prefix, $dbi; 645 $result = mysql_query("select mid, title, preamble, content,editimage from ".$prefix."$tab where id_cons='$id_cons' order by mid ", $dbi); 721 $sql="select mid, title, preamble, content,editimage from ".$prefix."$tab where id_cons='$id_cons' order by mid "; 722 $result = $dbi->prepare("$sql"); 723 $result->execute(); 646 724 647 725 echo "<li data-role=\"list-divider\" >"; … … 651 729 652 730 653 if ( mysql_num_rows($result) == 0) {731 if ($result->rowCount() == 0) { 654 732 return; 655 733 } else { 656 while (list($mid, $title, $preamble,$content, $editimage) = mysql_fetch_row($result)) {734 while (list($mid, $title, $preamble,$content, $editimage) = $result->fetch(PDO::FETCH_NUM)) { 657 735 if ($title != "" && $content != "") { 658 736 … … 693 771 $print=intval($print); 694 772 695 $res = $db->sql_query("select * from ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "); 696 $ressede = $db->sql_query("select * from ".$prefix."_ele_sede where id_cons='$id_cons' "); 697 $res3 = $db->sql_query("select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' "); 698 $circo = $db->sql_numrows($res); 699 $sedi = $db->sql_numrows($ressede); 700 $sez = $db->sql_numrows($res3); 773 $sql="select * from ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 774 $res = $dbi->prepare("$sql"); 775 $res->execute(); 776 $sql="select * from ".$prefix."_ele_sede where id_cons='$id_cons' "; 777 $ressede = $dbi->prepare("$sql"); 778 $ressede->execute(); 779 $sql="select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' "; 780 $res3 = $dbi->prepare("$sql"); 781 $res3->execute(); 782 $circo = $res->rowCount(); 783 $sedi = $ressede->rowCount(); 784 $sez = $res3->rowCount(); 701 785 702 786 //Variabili linguaggio … … 708 792 // se non referendum 709 793 if ($genere!=0 and !$votoc){ 710 $res1 = $db->sql_query("select id_cons from ".$prefix."_ele_candidati where id_cons='$id_cons' "); 711 $candi = $db->sql_numrows($res1); 794 $sql="select id_cons from ".$prefix."_ele_candidati where id_cons='$id_cons' "; 795 $res1 = $dbi->prepare("$sql"); 796 $res1->execute(); 797 $candi = $res1->rowCount(); 712 798 } 713 799 714 800 // se non europee (non liste e candidati) 715 801 if ($genere!=4){ 716 $ res2 = $db->sql_query("select id_cons from ".$prefix."_ele_gruppo where id_cons='$id_cons' ");802 $sql="select id_cons from ".$prefix."_ele_gruppo where id_cons='$id_cons' "; 717 803 }else{ 718 $ res2 = $db->sql_query("select id_cons from ".$prefix."_ele_lista where id_cons='$id_cons' ");804 $sql="select id_cons from ".$prefix."_ele_lista where id_cons='$id_cons' "; 719 805 } 720 721 $gruppo = $db->sql_numrows($res2); 806 $res2 = $dbi->prepare("$sql"); 807 $res2->execute(); 808 809 $gruppo = $res2->rowCount(); 722 810 723 811 // camera e senato con raggruppamenti 724 812 //if($votog){ 725 $res3 = $db->sql_query("select * from ".$prefix."_ele_lista where id_cons='$id_cons' "); 726 $liste = $db->sql_numrows($res3); 813 $sql="select * from ".$prefix."_ele_lista where id_cons='$id_cons' "; 814 $res3 = $dbi->prepare("$sql"); 815 $res3->execute(); 816 $liste = $res3->rowCount(); 727 817 //} 728 818 729 819 if($circo==1) $circo=$sedi; 730 $res4 = $db->sql_query("select sum(maschi),sum(femmine), sum(maschi+femmine) from ".$prefix."_ele_sezioni where id_cons=$id_cons"); 731 if($res4) list($maschi,$femmine,$tot) = $db->sql_fetchrow($res4); 820 $sql="select sum(maschi),sum(femmine), sum(maschi+femmine) from ".$prefix."_ele_sezioni where id_cons=$id_cons"; 821 $res4 = $dbi->prepare("$sql"); 822 $res4->execute(); 823 if($res4) list($maschi,$femmine,$tot) = $res4->fetch(PDO::FETCH_NUM); 732 824 733 825 … … 770 862 /*****************************************************/ 771 863 global $admin, $prefix, $dbi, $offset, $min,$id_cons,$file,$id_cons_gen,$id_comune ,$prev,$next; 772 $res = mysql_query("SELECT * FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 773 $max = mysql_num_rows($res); 864 $sql="SELECT * FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 865 $res = $dbi->prepare("$sql"); 866 $res->execute(); 867 $max = $res->rowCount(); 774 868 775 869 //OpenTable(); … … 782 876 $go="circo"; 783 877 784 $result = mysql_query("select * from ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ORDER BY num_circ 785 LIMIT $min,$offset", $dbi); 786 $numcirc=mysql_num_rows($result); 878 $sql="select * from ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ORDER BY num_circ 879 LIMIT $min,$offset"; 880 $result = $dbi->prepare("$sql"); 881 $result->execute(); 882 $numcirc=$result->rowCount(); 787 883 if ($numcirc>1){ 788 884 echo "<div><b>"._CIRCS."</b></div><br /><br /> … … 799 895 } 800 896 801 while(list($id_cons2,$id_circ,$num_circ,$descr_circ) = mysql_fetch_row($result)) {897 while(list($id_cons2,$id_circ,$num_circ,$descr_circ) = $result->fetch(PDO::FETCH_NUM)) { 802 898 #if($numcirc==1) {$descr_circ=''; $num_circ='';} 803 899 if (!($num_circ===0)) { … … 811 907 812 908 // dati sede 813 $result1 = mysql_query("select id_sede,indirizzo,telefono1,telefono2, mappa, filemappa from ".$prefix."_ele_sede where id_cons='$id_cons' and id_circ='$id_circ'", $dbi); 814 $righe=mysql_num_rows($result1);$i=0; 815 while(list($id_sede,$indir,$tel1,$tel2,$mappa,$filemappa)=mysql_fetch_row($result1)){ 909 $sql="select id_sede,indirizzo,telefono1,telefono2, mappa, filemappa from ".$prefix."_ele_sede where id_cons='$id_cons' and id_circ='$id_circ'"; 910 $result1 = $dbi->prepare("$sql"); 911 $result1->execute(); 912 $righe=$result1->rowCount();$i=0; 913 while(list($id_sede,$indir,$tel1,$tel2,$mappa,$filemappa)=$result1->fetch(PDO::FETCH_NUM)){ 816 914 817 915 $i++; … … 861 959 function genere(){ 862 960 global $prefix,$db,$id_cons_gen; 863 $res = $db->sql_query("SELECT descrizione,genere FROM ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen' "); 864 list($descr_cons,$genere) = $db->sql_fetchrow($res); 961 $sql="SELECT descrizione,genere FROM ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen' "; 962 $res = $dbi->prepare("$sql"); 963 $res->execute(); 964 list($descr_cons,$genere) = $res->fetch(PDO::FETCH_NUM); 865 965 //$descr_cons =stripslashes($descr_com); 866 966 … … 885 985 if (!isset($data1)) $data1=''; 886 986 if (!isset($ora_ril)) $ora_ril=''; 887 $res1 = mysql_query("SELECT count(data) 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 t1.id_cons='$id_cons' and data='$data1' and orario='$ora_ril' $circos group by t3.id_gruppo", $dbi); 987 $sql="SELECT count(data) 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 t1.id_cons='$id_cons' and data='$data1' and orario='$ora_ril' $circos group by t3.id_gruppo"; 988 $res1 = $dbi->prepare("$sql"); 989 $res1->execute(); 888 990 # mysql_query("select * from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' $circos group by id_sez ",$dbi); 889 $numero=mysql_num_rows($res1); 890 $res2 = mysql_query("SELECT t1.* FROM ".$prefix."_ele_sezioni as t1, ".$prefix."_ele_sede as t2 where t1.id_cons='$id_cons' and t1.id_sede=t2.id_sede $circos order by num_sez", $dbi); 991 $numero=$res1->rowCount(); 992 $sql="SELECT t1.* FROM ".$prefix."_ele_sezioni as t1, ".$prefix."_ele_sede as t2 where t1.id_cons='$id_cons' and t1.id_sede=t2.id_sede $circos order by num_sez"; 993 $res2 = $dbi->prepare("$sql"); 994 $res2->execute(); 891 995 #mysql_query("select * from ".$prefix."_ele_sezioni where id_cons='$id_cons' $circos",$dbi); 892 $sezioni= mysql_num_rows($res2);996 $sezioni=$res2->rowCount(); 893 997 894 998 … … 905 1009 // totali 906 1010 907 if($tema=='tour') $andcond="select orario,data from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' order by data desc,orario desc limit 0,1"; else $andcond="select orario,data from ".$prefix."_ele_rilaff where id_cons_gen='$id_cons_gen' order by data,orario"; 908 909 $res = mysql_query("$andcond", $dbi); 910 while(list($orario,$data) = mysql_fetch_row($res)) { 1011 if($tema=='tour') $andcond="select orario,data from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' order by data desc,orario desc limit 0,1"; 1012 else $andcond="select orario,data from ".$prefix."_ele_rilaff where id_cons_gen='$id_cons_gen' order by data,orario"; 1013 1014 $sql="$andcond"; 1015 $res = $dbi->prepare("$sql"); 1016 $res->execute(); 1017 while(list($orario,$data) = $res->fetch(PDO::FETCH_NUM)) { 911 1018 list ($ore,$minuti,$secondi)=explode(':',$orario); 912 1019 list ($anno,$mese,$giorno)=explode('-',$data); … … 916 1023 echo "<center>"._VOTANTI." "._ALLE." "._ORE." $ore,$minuti "._DEL." $giorno/$mese/$anno</center></li>"; 917 1024 918 $res1 = mysql_query("SELECT count(data) 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 t1.id_cons='$id_cons' and data='$data' and orario='$orario' $circos group by t3.id_gruppo", $dbi); 919 list($numero)=mysql_fetch_row($res1); 920 921 922 $res1 = mysql_query("select sum(t3.voti_complessivi), t4.num_gruppo , t4.id_gruppo 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 left join ".$prefix."_ele_gruppo as t4 on (t3.id_gruppo=t4.id_gruppo) where t3.id_cons='$id_cons' and t3.orario='$orario' and t3.data='$data' $circos group by t4.num_gruppo, t4.id_gruppo order by t4.num_gruppo ",$dbi); 1025 $sql="SELECT count(data) 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 t1.id_cons='$id_cons' and data='$data' and orario='$orario' $circos group by t3.id_gruppo"; 1026 $res1 = $dbi->prepare("$sql"); 1027 $res1->execute(); 1028 list($numero)=$res1->fetch(PDO::FETCH_NUM); 1029 1030 1031 $sql="select sum(t3.voti_complessivi), t4.num_gruppo , t4.id_gruppo 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 left join ".$prefix."_ele_gruppo as t4 on (t3.id_gruppo=t4.id_gruppo) where t3.id_cons='$id_cons' and t3.orario='$orario' and t3.data='$data' $circos group by t4.num_gruppo, t4.id_gruppo order by t4.num_gruppo "; 1032 $res1 = $dbi->prepare("$sql"); 1033 $res1->execute(); 923 1034 924 1035 925 1036 926 1037 927 while(list($voti_t, $num_gruppo,$id_gruppo) = mysql_fetch_row($res1)) {1038 while(list($voti_t, $num_gruppo,$id_gruppo) = $res1->fetch(PDO::FETCH_NUM)) { 928 1039 $query="select sum(voti_complessivi) from ".$prefix."_ele_voti_parziale where orario='$orario' and data='$data' and id_cons='$id_cons'"; 929 1040 930 1041 if ($genere==0){$query.=" and id_gruppo=$id_gruppo";} 931 $res_aff=mysql_query($query, $dbi); 932 $voti_numero=mysql_num_rows($res_aff); 1042 1043 $res_aff = $dbi->prepare("$query"); 1044 $res_aff->execute(); 1045 $voti_numero=$res_aff->rowCount(); 933 1046 $query="SELECT sum(maschi+femmine) FROM ".$prefix."_ele_sezioni as t1, ".$prefix."_ele_sede as t2 where t1.id_cons='$id_cons' and t1.id_sede=t2.id_sede $circos"; 934 1047 935 $res1234=mysql_query($query, $dbi); 936 list($tot)=mysql_fetch_row($res1234); 1048 1049 $res1234 = $dbi->prepare("$query"); 1050 $res1234->execute(); 1051 list($tot)=$res1234->rowCount(); 937 1052 938 1053 $perc=number_format($voti_t*100/$tot,2); … … 997 1112 998 1113 function affluenza_unica(){ 999 global $db ,$circo,$prefix,$id_cons,$genere,$id_circ,$id_comune,$id_cons_gen;1114 global $dbi,$circo,$prefix,$id_cons,$genere,$id_circ,$id_comune,$id_cons_gen; 1000 1115 1001 1116 if (isset($circo) and $circo) $circos="and t2.id_circ='$id_circ'"; … … 1004 1119 // numero sezioni scrutinate 1005 1120 1006 $res2 = $db->sql_query("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'"); 1007 $sezioni=$db->sql_numrows($res2); 1008 1009 $res = $db->sql_query("select orario,data from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' order by data desc,orario desc limit 1"); 1121 $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'"; 1122 $res2 = $dbi->prepare("$sql"); 1123 $res2->execute(); 1124 $sezioni=$res2->rowCount(); 1125 1126 $sql="select orario,data from ".$prefix."_ele_voti_parziale where id_cons='$id_cons' order by data desc,orario desc limit 1"; 1127 $res = $dbi->prepare("$sql"); 1128 $res->execute(); 1010 1129 if($res){ 1011 1130 1012 while(list($orario,$data) = $ db->sql_fetchrow($res)) {1131 while(list($orario,$data) = $res->fetch(PDO::FETCH_NUM)) { 1013 1132 list ($ore,$minuti,$secondi)=explode(':',$orario); 1014 1133 list ($anno,$mese,$giorno)=explode('-',$data); … … 1016 1135 1017 1136 1018 $res1 = $db->sql_query("select t3.* 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' group by t3.id_sez "); 1019 $numero=$db->sql_numrows($res1); 1137 $sql="select t3.* 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' group by t3.id_sez "; 1138 $res1 = $dbi->prepare("$sql"); 1139 $res1->execute(); 1140 $numero=$res1->rowCount(); 1020 1141 1021 1142 echo "<div style=\"text-align:center;\">Ultime Affluenze<br/>"; … … 1025 1146 1026 1147 1027 $res1 = $db->sql_query("select sum(t3.voti_complessivi), t4.num_gruppo , t4.id_gruppo 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 left join ".$prefix."_ele_gruppo as t4 on (t3.id_gruppo=t4.id_gruppo) where t3.id_cons='$id_cons' and t3.orario='$orario' and t3.data='$data' $circos group by t4.num_gruppo, t4.id_gruppo order by t4.num_gruppo "); 1148 $sql="select sum(t3.voti_complessivi), t4.num_gruppo , t4.id_gruppo 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 left join ".$prefix."_ele_gruppo as t4 on (t3.id_gruppo=t4.id_gruppo) where t3.id_cons='$id_cons' and t3.orario='$orario' and t3.data='$data' $circos group by t4.num_gruppo, t4.id_gruppo order by t4.num_gruppo "; 1149 $res1 = $dbi->prepare("$sql"); 1150 $res1->execute(); 1028 1151 1029 1152 1030 1153 1031 while(list($voti_t, $num_gruppo,$id_gruppo) = $ db->sql_fetchrow($res1)) {1154 while(list($voti_t, $num_gruppo,$id_gruppo) = $res1->fetch(PDO::FETCH_NUM)) { 1032 1155 1033 1156 $query="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"; 1034 if ($genere==0){$query.=" and t3.id_gruppo=$id_gruppo";} 1035 $res_aff=$db->sql_query($query); 1036 $voti_numero=$db->sql_numrows($res_aff); 1157 if ($genere==0){$query.=" and t3.id_gruppo=$id_gruppo";} 1158 1159 $res_aff = $dbi->prepare("$query"); 1160 $res_aff->execute(); 1161 $voti_numero=$res_aff->rowCount(); 1037 1162 1038 $query="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' ";1039 1040 $query="SELECT sum(maschi+femmine) FROM ".$prefix."_ele_sezioni as t1, ".$prefix."_ele_sede as t2 where t1.id_cons='$id_cons' and t1.id_sede=t2.id_sede ";1163 # $query="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' "; 1164 1165 $query="SELECT sum(maschi+femmine) FROM ".$prefix."_ele_sezioni as t1, ".$prefix."_ele_sede as t2 where t1.id_cons='$id_cons' and t1.id_sede=t2.id_sede "; 1041 1166 1042 1167 //if ($genere==0){$query.=" and t3.id_gruppo=$id_gruppo";} 1043 1168 $tot=''; 1044 $res1234=$db->sql_query($query); 1045 list($tot)=$db->sql_fetchrow($res1234); 1169 $res1234 = $dbi->prepare("$query"); 1170 $res1234->execute(); 1171 list($tot)=$res1234->fetch(PDO::FETCH_NUM); 1046 1172 if (isset($tot)){$perc=number_format($voti_t*100/$tot,2);} 1047 1173 else{$tot=0;$perc="0.00";} … … 1089 1215 if ($genere==0) $tab="ref"; 1090 1216 1091 $res = $db->sql_query("select t3.* from ".$prefix."_ele_voti_".$tab." 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' $circos group by t3.id_sez "); 1092 $numero=$db->sql_numrows($res); 1093 $res = $db->sql_query("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"); 1094 $sezioni=$db->sql_numrows($res); 1217 $sql="select t3.* from ".$prefix."_ele_voti_".$tab." 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' $circos group by t3.id_sez "; 1218 $res = $dbi->prepare("$sql"); 1219 $res->execute(); 1220 $numero=$res->rowCount(); 1221 $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"; 1222 $res = $dbi->prepare("$sql"); 1223 $res->execute(); 1224 $sezioni=$res->rowCount(); 1095 1225 1096 1226 if ($numero!=0){ … … 1105 1235 if ($genere!=0) { 1106 1236 1107 $res = $db->sql_query("select sum(t1.maschi+t1.femmine) 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' and validi>0 $circos"); 1108 list($tot_aventi) = $db->sql_fetchrow($res); 1109 1110 $res = $db->sql_query("select sum(t1.validi+t1.nulli+t1.bianchi+t1.contestati) as tot, 1237 $sql="select sum(t1.maschi+t1.femmine) 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' and validi>0 $circos"; 1238 $res = $dbi->prepare("$sql"); 1239 $res->execute(); 1240 list($tot_aventi) = $res->rowCount(); 1241 1242 $sql="select sum(t1.validi+t1.nulli+t1.bianchi+t1.contestati) as tot, 1111 1243 sum(t1.validi),sum(t1.nulli),sum(t1.bianchi),sum(t1.contestati), '0', '0', '0' 1112 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' and validi>0 $circos"); 1244 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' and validi>0 $circos"; 1245 $res = $dbi->prepare("$sql"); 1246 $res->execute(); 1113 1247 1114 1248 }else{ 1115 $res = $db->sql_query("SELECT sum(maschi+femmine) FROM ".$prefix."_ele_sezioni where id_cons='$id_cons'"); 1116 list($tot_aventi) = $db->sql_fetchrow($res); 1117 $res = $db->sql_query("SELECT sum(validi+nulli+bianchi+contestati) as tot, 1249 $sql="SELECT sum(maschi+femmine) FROM ".$prefix."_ele_sezioni where id_cons='$id_cons'"; 1250 $res = $dbi->prepare("$sql"); 1251 $res->execute(); 1252 list($tot_aventi) = $res->fetch(PDO::FETCH_NUM); 1253 $sql="SELECT sum(validi+nulli+bianchi+contestati) as tot, 1118 1254 sum(validi),sum(nulli),sum(bianchi),sum(contestati), id_gruppo, sum(si), sum(no) 1119 from ".$prefix."_ele_voti_ref where id_cons=$id_cons group by id_gruppo having tot>'0'"); 1255 from ".$prefix."_ele_voti_ref where id_cons=$id_cons group by id_gruppo having tot>'0'"; 1256 $res = $dbi->prepare("$sql"); 1257 $res->execute(); 1120 1258 } 1121 1259 1122 while (list($tot_votanti,$validi,$nulli,$bianchi,$contestati,$id,$si,$no) = $ db->sql_fetchrow($res)){1260 while (list($tot_votanti,$validi,$nulli,$bianchi,$contestati,$id,$si,$no) = $res->fetch(PDO::FETCH_NUM)){ 1123 1261 $tot_votanti=$validi+$bianchi+$nulli+$contestati; 1124 1262 $arvoti=array($validi,$nulli,$bianchi,$contestati); … … 1139 1277 1140 1278 if ($genere==0) { 1141 $resg = $db->sql_query("SELECT num_gruppo,descrizione from ".$prefix."_ele_gruppo where id_gruppo=$id"); 1142 list($num_gruppo,$descr_gruppo) = $db->sql_fetchrow($resg); 1279 $sql="SELECT num_gruppo,descrizione from ".$prefix."_ele_gruppo where id_gruppo=$id"; 1280 $resg = $dbi->prepare("$sql"); 1281 $resg->execute(); 1282 list($num_gruppo,$descr_gruppo) = $resg->fetch(PDO::FETCH_NUM); 1143 1283 } 1144 1284 … … 1185 1325 function graf_sezioni(){ 1186 1326 global $prefix, $dbi,$id_cons_gen; 1187 $sql = mysql_query("select chiusa from ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen'",$dbi); 1188 list($chiusa) = mysql_fetch_row($sql); 1327 $sql = "select chiusa from ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen'"; 1328 $res = $dbi->prepare("$sql"); 1329 $res->execute(); 1330 list($chiusa) = $res->fetch(PDO::FETCH_NUM); 1189 1331 1190 1332 //if($chiusa!='1') numeri_sezione(); # se la consultazione non Ú chiusa … … 1207 1349 1208 1350 # numero sezioni 1209 $res = mysql_query("select t1.id_sez,t1.num_sez 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 order by t1.num_sez",$dbi); 1210 $max = mysql_num_rows($res); 1351 $sql="select t1.id_sez,t1.num_sez 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 order by t1.num_sez"; 1352 $res = $dbi->prepare("$sql"); 1353 $res->execute(); 1354 $max = $res->rowCount(); 1211 1355 if(!isset($html)) $html=''; 1212 1356 $html = "\n<table style=\"margin:0px auto;border:0px; width:90%\"><tr>"; 1213 1357 1214 1358 $i=0;$id_circ_old=0;$e=0; 1215 while(list($sez_id, $sez_num) = mysql_fetch_row($res)) {1359 while(list($sez_id, $sez_num) = $res->fetch(PDO::FETCH_NUM)) { 1216 1360 $i++; 1217 1361 1218 $res2 = mysql_query("select * from ".$prefix."_ele_voti_".$tab." where id_sez='$sez_id'",$dbi); 1219 $numero=mysql_num_rows($res2); 1362 $sql="select * from ".$prefix."_ele_voti_".$tab." where id_sez='$sez_id'"; 1363 $res2 = $dbi->prepare("$sql"); 1364 $res2->execute(); 1365 $numero=$res2->rowCount(); 1220 1366 if ($numero!=0){$e++;$bgsez="#FFFF00";}else{$bgsez="";} 1221 1367 -
trunk/client/temi/Futura2/index.php
r256 r265 8 8 9 9 $nometema=$tema; 10 require_once("class/db/db.php"); //classe db10 #require_once("class/db/db.php"); //classe db 11 11 global $tema,$id_comune,$descr_cons,$genere,$tipo_cons,$multicomune; 12 12 … … 19 19 # descrizione comune 20 20 if(!$id_comune or $id_comune=='') $id_comune=$siteistat; 21 $res = $db->sql_query("SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "); 22 list($descr_com) = $db->sql_fetchrow($res); 21 $sql="SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "; 22 $res = $dbi->prepare("$sql"); 23 $res->execute(); 24 25 list($descr_com) = $res->fetch(PDO::FETCH_NUM); 23 26 24 27 … … 27 30 #################################### 28 31 29 global $op,$tema,$db ,$nometema,$file,$bgcolor,$sitename,$dbi,$prefix,$blocco,$lang,$siteistat,$id_cons_gen,$descr_cons,$minsez,$offsetsez,$multicomune,$id_comune,$multicomune,$rss,$colortheme,$descr_com;32 global $op,$tema,$dbi,$nometema,$file,$bgcolor,$sitename,$prefix,$blocco,$lang,$siteistat,$id_cons_gen,$descr_cons,$minsez,$offsetsez,$multicomune,$id_comune,$multicomune,$rss,$colortheme,$descr_com; 30 33 31 34 include("temi/$tema/function_theme.php"); … … 35 38 $logo= "<img src=\"modules.php?name=Elezioni&file=foto&id_comune=".$id_comune."\" alt=\"logo\" width=\"70\" align=\"left\"/>"; 36 39 37 $res = $db->sql_query("SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "); 38 list($descr_com) = $db->sql_fetchrow($res); 40 $sql="SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "; 41 $res = $dbi->prepare("$sql"); 42 $res->execute(); 43 44 list($descr_com) = $res->fetch(PDO::FETCH_NUM); 39 45 $descr_com =stripslashes($descr_com); 40 46 … … 91 97 92 98 93 $res = $db->sql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ); 94 $esiste=$db->sql_numrows($res); 99 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc"; 100 $res = $dbi->prepare("$sql"); 101 $res->execute(); 102 103 $esiste=$res->rowCount(); 95 104 96 105 echo " <form method=\"post\" action=\"modules.php\"> … … 102 111 onchange=\"javascript:top.location.href='modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen='+this.options[this.options.selectedIndex].value\">"; 103 112 104 while(list($id,$descrizione) = $ db->sql_fetchrow($res)) {113 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 105 114 $descrizione=substr(str_replace("+"," ",$descrizione),0,30); 106 115 $sel = ($id == $id_cons_gen) ? "selected=\"selected\"":""; … … 263 272 264 273 function grafvotanti_mob(){ 265 global $tema,$db ,$prefix,$colortheme;274 global $tema,$dbi,$prefix,$colortheme; 266 275 echo '<ul data-role="listview" data-inset="true" data-divider-theme="'.$colortheme.'">'; 267 276 … … 274 283 # gruppo per menu grafica 275 284 function grafgruppo(){ 276 global $tema,$db ,$prefix,$colortheme;285 global $tema,$dbi,$prefix,$colortheme; 277 286 echo '<ul data-role="listview" data-inset="true" data-divider-theme="'.$colortheme.'">'; 278 287 graf_gruppo_mob(); … … 284 293 # gruppo per menu grafica 285 294 function grafsezione(){ 286 global $tema,$db ,$prefix,$colortheme;295 global $tema,$dbi,$prefix,$colortheme; 287 296 echo '<ul data-role="listview" data-inset="true" data-divider-theme="'.$colortheme.'">'; 288 297 graf_sezioni(); … … 348 357 349 358 function votanti_mob(){ 350 global $tema,$db ,$prefix,$colortheme;359 global $tema,$dbi,$prefix,$colortheme; 351 360 echo '<ul data-role="listview" data-inset="true" data-divider-theme="'.$colortheme.'">'; 352 361 votanti_tabella(); … … 388 397 ############################################### 389 398 # scelta comune in caso di multicomune tema 390 global $multicomune,$tema,$prefix,$db ,$colortheme,$id_cons_gen,$info,$id_comune,$rss;399 global $multicomune,$tema,$prefix,$dbi,$colortheme,$id_cons_gen,$info,$id_comune,$rss; 391 400 392 401 echo "<center> … … 399 408 { 400 409 401 $sql comu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc";402 403 $rescomu= $db->sql_query($sqlcomu);404 $esiste_multi=$ db->sql_numrows($rescomu);410 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 411 $rescomu = $dbi->prepare("$sql"); 412 $rescomu->execute(); 413 $esiste_multi=$rescomu->rowCount(); 405 414 if ($esiste_multi>=1) { 406 415 … … 411 420 <option>Scegli il comune</option>"; 412 421 413 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){414 //$sel=($id == $id_comune) ? "selected=\"selected\"":"";422 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 423 $sel=($id == $id_comune) ? "selected=\"selected\"":""; 415 424 echo "<option value=\"$id\" $sel >$descrizione</option>"; 416 425 } … … 423 432 # colore del tema 424 433 # la variabile rss, non usta in questo tema, Ú stata presa in prestito per determinare il colore del tema 425 434 $selez=''; 426 435 echo "<select name=\"rss\" data-native-menu=\"false\" > "; 427 436 echo "<option>Scegli il colore del tema</option>"; … … 441 450 ############################################### 442 451 # scelta comune in caso di multicomune tema 443 global $tema,$db ,$prefix,$colortheme,$id_comune,$descr_com;452 global $tema,$dbi,$prefix,$colortheme,$id_comune,$descr_com; 444 453 445 454 echo '<ul data-role="listview" data-inset="true" data-divider-theme="'.$colortheme.'">'; -
trunk/client/temi/altro/menu.php
r254 r265 14 14 Funzione Menu a cascata 15 15 *************************/ 16 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu= mysql_query("$sqlcomu",$dbi); 18 list($descr_com)=mysql_fetch_row($rescomu); 19 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 20 $rescomu= mysql_query("$sqlcomu",$dbi); 21 list($fascia)=mysql_fetch_row($rescomu); 16 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu = $dbi->prepare("$sql"); 18 $rescomu->execute(); 19 20 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 21 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 22 $rescomu = $dbi->prepare("$sql"); 23 $rescomu->execute(); 24 25 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 22 26 echo "\n"; 23 27 echo ' <table cellpadding="0" cellspacing="0" style="border:0px;text-align:left;width=100%;"><tr><td> … … 39 43 if ($multicomune=='1') 40 44 { 41 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 42 $rescomu= mysql_query("$sqlcomu",$dbi); 43 $esiste_multi=mysql_num_rows($rescomu); 45 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 46 $rescomu = $dbi->prepare("$sql"); 47 $rescomu->execute(); 48 49 $esiste_multi=$rescomu->rowCount(); 44 50 if ($esiste_multi>=1) { 45 51 echo " <li class=\"dropdown\"> … … 48 54 <ul class=\"drop-nav\">"; 49 55 50 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){56 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 51 57 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 52 58 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 63 69 ***********************************/ 64 70 65 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 66 $esiste=mysql_num_rows($res); 71 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 72 $res = $dbi->prepare("$sql"); 73 $res->execute(); 74 75 $esiste=$res->rowCount(); 67 76 //se esiste consultazione fa vedere i dati 68 77 if ($esiste>=1) { … … 71 80 <ul class=\"drop-nav\">"; 72 81 73 while(list($id,$descrizione) = mysql_fetch_row($res)) {82 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 74 83 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 75 84 ".substr($descrizione,0,60)."</a></li>"; … … 112 121 ***********************************/ 113 122 114 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 115 list($num_circ) = mysql_fetch_row($res); 123 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 124 $res = $dbi->prepare("$sql"); 125 $res->execute(); 126 127 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 116 128 echo " <li class=\"dropdown\"><a href=\"#\"><strong>"._RISULTATI."</strong></a> 117 129 <ul class=\"drop-nav\">"; … … 141 153 } 142 154 } 143 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 144 list($chiusa)=mysql_fetch_row($resc); 155 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 156 $resc = $dbi->prepare("$sql"); 157 $resc->execute(); 158 159 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 145 160 146 161 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/blog/menu.php
r254 r265 14 14 Funzione Menu a cascata 15 15 *************************/ 16 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu= mysql_query("$sqlcomu",$dbi); 18 list($descr_com)=mysql_fetch_row($rescomu); 19 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 20 $rescomu= mysql_query("$sqlcomu",$dbi); 21 list($fascia)=mysql_fetch_row($rescomu); 16 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu = $dbi->prepare("$sql"); 18 $rescomu->execute(); 19 20 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 21 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 22 $rescomu = $dbi->prepare("$sql"); 23 $rescomu->execute(); 24 25 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 22 26 23 27 echo ' <table cellpadding="0" cellspacing="0" style="border:0px;text-align:left;"><tr><td> … … 38 42 if ($multicomune=='1') 39 43 { 40 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 41 $rescomu= mysql_query("$sqlcomu",$dbi); 42 $esiste_multi=mysql_num_rows($rescomu); 43 if ($esiste_multi>=1) { 44 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 45 $rescomu = $dbi->prepare("$sql"); 46 $rescomu->execute(); 47 48 $esiste_multi=$rescomu->rowCount(); 49 if ($esiste_multi>=1) { 44 50 echo " <li class=\"dropdown\"> 45 51 <a href=\"#\"><strong>"._COMUNI."</strong></a> … … 47 53 <ul class=\"drop-nav\">"; 48 54 49 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){55 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 50 56 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 51 57 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 62 68 ***********************************/ 63 69 64 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 65 $esiste=mysql_num_rows($res); 70 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 71 $res = $dbi->prepare("$sql"); 72 $res->execute(); 73 74 $esiste=$res->rowCount(); 66 75 //se esiste consultazione fa vedere i dati 67 76 if ($esiste>=1) { … … 70 79 <ul class=\"drop-nav\">"; 71 80 72 while(list($id,$descrizione) = mysql_fetch_row($res)) {81 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 73 82 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 74 83 ".substr($descrizione,0,60)."</a></li>"; … … 111 120 ***********************************/ 112 121 113 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 114 list($num_circ) = mysql_fetch_row($res); 122 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 123 $res = $dbi->prepare("$sql"); 124 $res->execute(); 125 126 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 115 127 echo " <li class=\"dropdown\"><a href=\"#\"><strong>"._RISULTATI."</strong></a> 116 128 <ul class=\"drop-nav\">"; … … 140 152 } 141 153 } 142 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 143 list($chiusa)=mysql_fetch_row($resc); 154 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 155 $resc = $dbi->prepare("$sql"); 156 $resc->execute(); 157 158 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 144 159 145 160 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/default/menu.php
r254 r265 14 14 Funzione Menu a cascata 15 15 *************************/ 16 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu= mysql_query("$sqlcomu",$dbi); 18 list($descr_com)=mysql_fetch_row($rescomu); 19 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 20 $rescomu= mysql_query("$sqlcomu",$dbi); 21 list($fascia)=mysql_fetch_row($rescomu); 16 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu = $dbi->prepare("$sql"); 18 $rescomu->execute(); 19 20 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 21 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 22 $rescomu = $dbi->prepare("$sql"); 23 $rescomu->execute(); 24 25 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 22 26 23 27 echo ' <table cellpadding="0" cellspacing="0" style="border:0px;text-align:left;"><tr><td> … … 39 43 if ($multicomune=='1') 40 44 { 41 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 42 $rescomu= mysql_query("$sqlcomu",$dbi); 43 $esiste_multi=mysql_num_rows($rescomu); 45 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 46 $rescomu = $dbi->prepare("$sql"); 47 $rescomu->execute(); 48 49 $esiste_multi=$rescomu->rowCount(); 44 50 if ($esiste_multi>=1) { 45 51 echo " <li class=\"dropdown\"> … … 48 54 <ul class=\"drop-nav\">"; 49 55 50 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){56 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 51 57 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 52 58 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 63 69 ***********************************/ 64 70 65 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 66 $esiste=mysql_num_rows($res); 71 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 72 $res = $dbi->prepare("$sql"); 73 $res->execute(); 74 75 $esiste=$res->rowCount(); 67 76 //se esiste consultazione fa vedere i dati 68 77 if ($esiste>=1) { … … 71 80 <ul class=\"drop-nav\">"; 72 81 73 while(list($id,$descrizione) = mysql_fetch_row($res)) {82 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 74 83 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 75 84 ".substr($descrizione,0,60)."</a></li>"; … … 112 121 ***********************************/ 113 122 114 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 115 list($num_circ) = mysql_fetch_row($res); 123 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 124 $res = $dbi->prepare("$sql"); 125 $res->execute(); 126 127 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 116 128 echo " <li class=\"dropdown\"><a href=\"#\"><strong>"._RISULTATI."</strong></a> 117 129 <ul class=\"drop-nav\">"; … … 141 153 } 142 154 } 143 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 144 list($chiusa)=mysql_fetch_row($resc); 155 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 156 $resc = $dbi->prepare("$sql"); 157 $resc->execute(); 158 159 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 145 160 146 161 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/facebook/menu.php
r254 r265 26 26 $button="<br /><object><noscript><div><input name=\"vai\" type=\"image\" src=\"modules/Elezioni/images/ok2.jpg\" alt=\"ok\" title=\"ok\" /></div></noscript></object>"; 27 27 28 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 29 $rescomu= mysql_query("$sqlcomu",$dbi); 30 list($descr_com)=mysql_fetch_row($rescomu); 31 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 32 $rescomu= mysql_query("$sqlcomu",$dbi); 33 list($fascia)=mysql_fetch_row($rescomu); 28 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 29 $rescomu = $dbi->prepare("$sql"); 30 $rescomu->execute(); 31 32 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 33 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 34 $res = $dbi->prepare("$sql"); 35 $res->execute(); 36 37 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 34 38 echo '<style type="text/css"> 35 39 html,body{margin:0;padding:0} … … 62 66 if ($multicomune=='1') 63 67 { 64 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 65 $rescomu= mysql_query("$sqlcomu",$dbi); 66 $esiste_multi=mysql_num_rows($rescomu); 68 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 69 $rescomu = $dbi->prepare("$sql"); 70 $rescomu->execute(); 71 72 $esiste_multi=$rescomu->rowCount(); 67 73 if ($esiste_multi>=1) { 68 74 echo " <li> … … 71 77 <ul>"; 72 78 73 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){79 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 74 80 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 75 81 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 86 92 ***********************************/ 87 93 88 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 89 $esiste=mysql_num_rows($res); 94 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 95 $res = $dbi->prepare("$sql"); 96 $res->execute(); 97 98 $esiste=$res->rowCount(); 90 99 //se esiste consultazione fa vedere i dati 91 100 if ($esiste>=1) { … … 94 103 <ul>"; 95 104 96 while(list($id,$descrizione) = mysql_fetch_row($res)) {105 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 97 106 echo "<li class=\"icon matita\" ><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 98 107 ".substr($descrizione,0,33)."</a></li>"; … … 134 143 ***********************************/ 135 144 136 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 137 list($num_circ) = mysql_fetch_row($res); 145 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 146 $res = $dbi->prepare("$sql"); 147 $res->execute(); 148 149 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 138 150 echo " <li><a href=\"#\"><strong>"._RISULTATI."</strong></a> 139 151 <ul>"; … … 163 175 } 164 176 } 165 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 166 list($chiusa)=mysql_fetch_row($resc); 177 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 178 $resc = $dbi->prepare("$sql"); 179 $resc->execute(); 180 181 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 167 182 168 183 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/realistic/menu.php
r254 r265 26 26 $button="<br /><object><noscript><div><input name=\"vai\" type=\"image\" src=\"modules/Elezioni/images/ok2.jpg\" alt=\"ok\" title=\"ok\" /></div></noscript></object>"; 27 27 28 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 29 $rescomu= mysql_query("$sqlcomu",$dbi); 30 list($descr_com)=mysql_fetch_row($rescomu); 31 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 32 $rescomu= mysql_query("$sqlcomu",$dbi); 33 list($fascia)=mysql_fetch_row($rescomu); 28 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 29 $rescomu = $dbi->prepare("$sql"); 30 $rescomu->execute(); 31 32 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 33 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 34 $rescomu = $dbi->prepare("$sql"); 35 $rescomu->execute(); 36 37 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 34 38 echo ' 35 39 <div id="contiene"> … … 52 56 if ($multicomune=='1') 53 57 { 54 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 55 $rescomu= mysql_query("$sqlcomu",$dbi); 56 $esiste_multi=mysql_num_rows($rescomu); 58 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 59 $rescomu = $dbi->prepare("$sql"); 60 $rescomu->execute(); 61 62 $esiste_multi=$rescomu->rowCount(); 57 63 if ($esiste_multi>=1) { 58 64 echo " <li> … … 61 67 <ul>"; 62 68 63 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){69 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 64 70 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 65 71 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 76 82 ***********************************/ 77 83 78 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 79 $esiste=mysql_num_rows($res); 84 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 85 $res = $dbi->prepare("$sql"); 86 $res->execute(); 87 88 $esiste=$res->rowCount(); 80 89 //se esiste consultazione fa vedere i dati 81 90 if ($esiste>=1) { … … 84 93 <ul>"; 85 94 86 while(list($id,$descrizione) = mysql_fetch_row($res)) {95 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 87 96 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 88 97 ".substr($descrizione,0,60)."</a></li>"; … … 124 133 ***********************************/ 125 134 126 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 127 list($num_circ) = mysql_fetch_row($res); 135 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 136 $res = $dbi->prepare("$sql"); 137 $res->execute(); 138 139 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 128 140 echo " <li><a href=\"#\"><strong>"._RISULTATI."</strong></a> 129 141 <ul>"; … … 153 165 } 154 166 } 155 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 156 list($chiusa)=mysql_fetch_row($resc); 167 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 168 $resc = $dbi->prepare("$sql"); 169 $resc->execute(); 170 171 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 157 172 158 173 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/spectral/menu.php
r254 r265 26 26 $button="<br /><object><noscript><div><input name=\"vai\" type=\"image\" src=\"modules/Elezioni/images/ok2.jpg\" alt=\"ok\" title=\"ok\" /></div></noscript></object>"; 27 27 28 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 29 $rescomu= mysql_query("$sqlcomu",$dbi); 30 list($descr_com)=mysql_fetch_row($rescomu); 31 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 32 $rescomu= mysql_query("$sqlcomu",$dbi); 33 list($fascia)=mysql_fetch_row($rescomu); 28 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 29 $rescomu = $dbi->prepare("$sql"); 30 $rescomu->execute(); 31 32 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 33 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 34 $rescomu = $dbi->prepare("$sql"); 35 $rescomu->execute(); 36 37 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 34 38 echo ' 35 39 <div id="contiene"> … … 52 56 if ($multicomune=='1') 53 57 { 54 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 55 $rescomu= mysql_query("$sqlcomu",$dbi); 56 $esiste_multi=mysql_num_rows($rescomu); 58 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 59 $rescomu = $dbi->prepare("$sql"); 60 $rescomu->execute(); 61 62 $esiste_multi=$rescomu->rowCount(); 57 63 if ($esiste_multi>=1) { 58 64 echo " <li> … … 61 67 <ul>"; 62 68 63 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){69 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 64 70 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 65 71 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 76 82 ***********************************/ 77 83 78 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 79 $esiste=mysql_num_rows($res); 84 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 85 $res = $dbi->prepare("$sql"); 86 $res->execute(); 87 88 $esiste=$res->rowCount(); 80 89 //se esiste consultazione fa vedere i dati 81 90 if ($esiste>=1) { … … 84 93 <ul>"; 85 94 86 while(list($id,$descrizione) = mysql_fetch_row($res)) {95 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 87 96 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 88 97 ".substr($descrizione,0,31)."</a></li>"; … … 124 133 ***********************************/ 125 134 126 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 127 list($num_circ) = mysql_fetch_row($res); 135 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 136 $res = $dbi->prepare("$sql"); 137 $res->execute(); 138 139 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 128 140 echo " <li><a href=\"#\"><strong>"._RISULTATI."</strong></a> 129 141 <ul>"; … … 153 165 } 154 166 } 155 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 156 list($chiusa)=mysql_fetch_row($resc); 167 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 168 $resc = $dbi->prepare("$sql"); 169 $resc->execute(); 170 171 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 157 172 158 173 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/stylized/menu.php
r254 r265 14 14 Funzione Menu a cascata 15 15 *************************/ 16 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu= mysql_query("$sqlcomu",$dbi); 18 list($descr_com)=mysql_fetch_row($rescomu); 19 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 20 $rescomu= mysql_query("$sqlcomu",$dbi); 21 list($fascia)=mysql_fetch_row($rescomu); 16 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu = $dbi->prepare("$sql"); 18 $rescomu->execute(); 19 20 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 21 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 22 $rescomu = $dbi->prepare("$sql"); 23 $rescomu->execute(); 24 25 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 22 26 23 27 echo ' <table cellpadding="0" cellspacing="0" style="border:0px;text-align:left;"><tr><td> … … 39 43 if ($multicomune=='1') 40 44 { 41 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 42 $rescomu= mysql_query("$sqlcomu",$dbi); 43 $esiste_multi=mysql_num_rows($rescomu); 45 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 46 $rescomu = $dbi->prepare("$sql"); 47 $rescomu->execute(); 48 49 $esiste_multi=$rescomu->rowCount(); 44 50 if ($esiste_multi>=1) { 45 51 echo " <li class=\"dropdown\"> … … 48 54 <ul class=\"drop-nav\">"; 49 55 50 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){56 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 51 57 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 52 58 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 63 69 ***********************************/ 64 70 65 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 66 $esiste=mysql_num_rows($res); 71 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 72 $res = $dbi->prepare("$sql"); 73 $res->execute(); 74 75 $esiste=$res->rowCount(); 67 76 //se esiste consultazione fa vedere i dati 68 77 if ($esiste>=1) { … … 71 80 <ul class=\"drop-nav\">"; 72 81 73 while(list($id,$descrizione) = mysql_fetch_row($res)) {82 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 74 83 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 75 84 ".substr($descrizione,0,31)."</a></li>"; … … 112 121 ***********************************/ 113 122 114 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 115 list($num_circ) = mysql_fetch_row($res); 123 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 124 $res = $dbi->prepare("$sql"); 125 $res->execute(); 126 127 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 116 128 echo " <li class=\"dropdown\"><a href=\"#\"><strong>"._RISULTATI."</strong></a> 117 129 <ul class=\"drop-nav\">"; … … 141 153 } 142 154 } 143 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 144 list($chiusa)=mysql_fetch_row($resc); 155 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 156 $resc = $dbi->prepare("$sql"); 157 $resc->execute(); 158 159 list($chiusa)=m$resc->fetch(PDO::FETCH_NUM); 145 160 146 161 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/tour/menu.php
r254 r265 14 14 Funzione Menu a cascata 15 15 *************************/ 16 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu= mysql_query("$sqlcomu",$dbi); 18 list($descr_com)=mysql_fetch_row($rescomu); 19 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 20 $rescomu= mysql_query("$sqlcomu",$dbi); 21 list($fascia)=mysql_fetch_row($rescomu); 16 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu = $dbi->prepare("$sql"); 18 $rescomu->execute(); 19 20 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 21 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 22 $rescomu = $dbi->prepare("$sql"); 23 $rescomu->execute(); 24 25 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 22 26 23 27 echo ' <table cellpadding="0" cellspacing="0" style="border:0px;text-align:left;"><tr><td> … … 38 42 if ($multicomune=='1') 39 43 { 40 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 41 $rescomu= mysql_query("$sqlcomu",$dbi); 42 $esiste_multi=mysql_num_rows($rescomu); 44 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 45 $rescomu = $dbi->prepare("$sql"); 46 $rescomu->execute(); 47 48 $esiste_multi=$rescomu->rowCount(); 43 49 if ($esiste_multi>=1) { 44 50 echo " <li class=\"dropdown\"> … … 47 53 <ul class=\"drop-nav\">"; 48 54 49 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){55 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 50 56 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 51 57 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 62 68 ***********************************/ 63 69 64 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 65 $esiste=mysql_num_rows($res); 70 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 71 $res = $dbi->prepare("$sql"); 72 $res->execute(); 73 74 $esiste=$res->rowCount(); 66 75 //se esiste consultazione fa vedere i dati 67 76 if ($esiste>=1) { … … 70 79 <ul class=\"drop-nav\">"; 71 80 72 while(list($id,$descrizione) = mysql_fetch_row($res)) {81 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 73 82 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 74 83 ".substr($descrizione,0,31)."</a></li>"; … … 111 120 ***********************************/ 112 121 113 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 114 list($num_circ) = mysql_fetch_row($res); 122 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 123 $res = $dbi->prepare("$sql"); 124 $res->execute(); 125 126 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 115 127 echo " <li class=\"dropdown\"><a href=\"#\"><strong>"._RISULTATI."</strong></a> 116 128 <ul class=\"drop-nav\">"; … … 140 152 } 141 153 } 142 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 143 list($chiusa)=mysql_fetch_row($resc); 154 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 155 $resc = $dbi->prepare("$sql"); 156 $resc->execute(); 157 158 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 144 159 145 160 if ($hondt>=1 and $chiusa==1) { -
trunk/client/temi/yellowblu/menu.php
r254 r265 14 14 Funzione Menu a cascata 15 15 *************************/ 16 $sqlcomu="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu= mysql_query("$sqlcomu",$dbi); 18 list($descr_com)=mysql_fetch_row($rescomu); 19 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 20 $rescomu= mysql_query("$sqlcomu",$dbi); 21 list($fascia)=mysql_fetch_row($rescomu); 16 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune=$id_comune"; 17 $rescomu = $dbi->prepare("$sql"); 18 $rescomu->execute(); 19 20 list($descr_com)=$rescomu->fetch(PDO::FETCH_NUM); 21 $sql="select id_fascia from ".$prefix."_ele_cons_comune where id_comune=$id_comune and id_cons='$id_cons'"; 22 $rescomu = $dbi->prepare("$sql"); 23 $rescomu->execute(); 24 25 list($fascia)=$rescomu->fetch(PDO::FETCH_NUM); 22 26 23 27 echo ' <table cellpadding="0" cellspacing="0" style="border:0px;text-align:left;"><tr><td> … … 39 43 if ($multicomune=='1') 40 44 { 41 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 42 $rescomu= mysql_query("$sqlcomu",$dbi); 43 $esiste_multi=mysql_num_rows($rescomu); 45 $sql="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa!='2' group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 46 $rescomu = $dbi->prepare("$sql"); 47 $rescomu->execute(); 48 49 $esiste_multi=$rescomu->rowCount(); 44 50 if ($esiste_multi>=1) { 45 51 echo " <li class=\"dropdown\"> … … 48 54 <ul class=\"drop-nav\">"; 49 55 50 while (list($id,$descrizione,)= mysql_fetch_row($rescomu)){56 while (list($id,$descrizione,)=$rescomu->fetch(PDO::FETCH_NUM)){ 51 57 echo "<li><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id&file=index\"> 52 58 <img src=\"modules/Elezioni/images/logo.gif\" width=\"16\" height=\"16\" class=\"nobordo\"> $descrizione</a></li>"; … … 63 69 ***********************************/ 64 70 65 $res = mysql_query("SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" , $dbi); 66 $esiste=mysql_num_rows($res); 71 $sql="SELECT t1.id_cons_gen,t1.descrizione FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' and t2.chiusa!='2' order by t1.data_fine desc" ; 72 $res = $dbi->prepare("$sql"); 73 $res->execute(); 74 75 $esiste=$res->fetch(PDO::FETCH_NUM); 67 76 //se esiste consultazione fa vedere i dati 68 77 if ($esiste>=1) { … … 71 80 <ul class=\"drop-nav\">"; 72 81 73 while(list($id,$descrizione) = mysql_fetch_row($res)) {82 while(list($id,$descrizione) = $res->fetch(PDO::FETCH_NUM)) { 74 83 echo "<li class=\"icon matita\"><a href=\"modules.php?op=gruppo&name=Elezioni&id_comune=$id_comune&file=index&id_cons_gen=$id\"> 75 84 ".substr($descrizione,0,60)."</a></li>"; … … 112 121 ***********************************/ 113 122 114 $res = mysql_query("SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 115 list($num_circ) = mysql_fetch_row($res); 123 $sql="SELECT count(0) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' "; 124 $res = $dbi->prepare("$sql"); 125 $res->execute(); 126 127 list($num_circ) = $res->fetch(PDO::FETCH_NUM); 116 128 echo " <li class=\"dropdown\"><a href=\"#\"><strong>"._RISULTATI."</strong></a> 117 129 <ul class=\"drop-nav\">"; … … 141 153 } 142 154 } 143 $resc = mysql_query("SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" , $dbi); 144 list($chiusa)=mysql_fetch_row($resc); 155 $sql="SELECT chiusa FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons'" ; 156 $resc = $dbi->prepare("$sql"); 157 $resc->execute(); 158 159 list($chiusa)=$resc->fetch(PDO::FETCH_NUM); 145 160 146 161 if ($hondt>=1 and $chiusa==1) {
Note:
See TracChangeset
for help on using the changeset viewer.