Changeset 265 for trunk/client/modules/Elezioni/blocchi/bloccolink.php
- Timestamp:
- Apr 13, 2019, 8:05:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/blocchi/bloccolink.php
r249 r265 3 3 4 4 global $genere,$id_cons_gen,$id_cons,$id_comune,$prefix,$dbi; 5 $result = mysql_query("select mid, title, preamble, content,editimage from ".$prefix."_ele_link where id_cons='$id_cons' order by mid ", $dbi); 6 if (mysql_num_rows($result) == 0) { 5 $sql="select mid, title, preamble, content,editimage from ".$prefix."_ele_link where id_cons='$id_cons' order by mid "; 6 $res = $dbi->prepare("$sql"); 7 $res->execute(); 8 9 if ($res->rowCount() == 0) { 7 10 return; 8 11 } else { 9 12 echo "<h5>"._LINK."</h5><p>"; 10 while (list($mid, $title, $preamble,$content, $editimage) = mysql_fetch_row($result)) {13 while (list($mid, $title, $preamble,$content, $editimage) = $res->fetch(PDO::FETCH_NUM)) { 11 14 if ($title != "" && $content != "") { 12 15 $content = stripslashes($content);
Note:
See TracChangeset
for help on using the changeset viewer.