Changeset 265 for trunk/client/temi/default/menu.php
- Timestamp:
- Apr 13, 2019, 8:05:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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) {
Note:
See TracChangeset
for help on using the changeset viewer.