Changeset 265 for trunk/client/modules/Elezioni/crea_pagina.php
- Timestamp:
- Apr 13, 2019, 8:05:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/crea_pagina.php
r252 r265 21 21 22 22 global $prefix,$dbi,$pdf,$csv,$xls,$lang,$descr_cons,$prefix,$dbi,$id_comune,$descrizione,$siteistat,$min,$offset,$minsez,$offsetsez,$datipdf,$orienta,$formato; 23 $res = mysql_query("SELECT descrizione,simbolo,stemma FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi); 24 list($descr_com,$simbolo,$stemma) = mysql_fetch_row($res); 23 $sql="SELECT descrizione,simbolo,stemma FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "; 24 $res = $dbi->prepare("$sql"); 25 $res->execute(); 26 27 list($descr_com,$simbolo,$stemma) = $res->fetch(PDO::FETCH_NUM); 25 28 26 29
Note:
See TracChangeset
for help on using the changeset viewer.