Changeset 256 for trunk/admin/temi/default
- Timestamp:
- Jan 16, 2019, 7:06:35 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/temi/default/index.php
r2 r256 10 10 $bgcolor="#b0b0b0"; 11 11 $nometema=$tema; 12 12 13 function testata($tema){ 13 14 global $nometema,$id_comune,$id_cons_gen,$aid,$dbi,$prefix; 14 15 $nometema=$tema; 15 $res_com = mysql_query("SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune'",$dbi); 16 $res_cons = mysql_query("SELECT descrizione FROM ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen'",$dbi); 17 list($descr_comune) = mysql_fetch_row($res_com); 18 list($descr_consultazione) = mysql_fetch_row($res_cons); 16 $sql="SELECT descrizione FROM ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen' "; 17 $sth = $dbi->prepare("$sql"); 18 $sth->execute(); 19 $row = $sth->fetch(PDO::FETCH_BOTH); 20 $descr_consultazione=$row[0]; 21 $sql="select descrizione from ".$prefix."_ele_comuni where id_comune='$id_comune'"; 22 $sth = $dbi->prepare("$sql"); 23 $sth->execute(); 24 $row = $sth->fetch(PDO::FETCH_BOTH); 25 $descr_comune=$row[0]; 19 26 20 27 echo "<div class=\"container\"><table width=\"95%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"table-main\">
Note:
See TracChangeset
for help on using the changeset viewer.