Changeset 86 for trunk/client/modules/Elezioni/foto.php
- Timestamp:
- Apr 26, 2011, 10:41:31 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/foto.php
r20 r86 19 19 if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune=''; 20 20 if (isset($param['prefix'])) $prefix=$param['prefix']; 21 21 if (isset($param['pdf'])) $pdf=$param['pdf']; 22 22 23 23 if ($id_lista){ 24 $sql = "select * from ".$prefix."_ele_lista where id_lista= ".$id_lista;24 $sql = "select * from ".$prefix."_ele_lista where id_lista='$id_lista'"; 25 25 $res = mysql_query($sql,$dbi); 26 26 $dati = mysql_fetch_array($res); 27 27 $stemma = $dati['stemma']; 28 28 }elseif ($id_gruppo){ 29 $sql = "select * from ".$prefix."_ele_gruppo where id_gruppo= ".$id_gruppo;29 $sql = "select * from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'"; 30 30 $res = mysql_query($sql,$dbi); 31 31 $dati = mysql_fetch_array($res); 32 $stemma = $dati['stemma']; 32 if(isset($pdf)) $stemma = $dati['programma']; 33 else $stemma = $dati['stemma']; 33 34 }elseif ($id_sede){ 34 $sql = "select * from ".$prefix."_ele_sede where id_sede= ".$id_sede;35 $sql = "select * from ".$prefix."_ele_sede where id_sede='$id_sede'"; 35 36 $res = mysql_query($sql,$dbi); 36 37 $dati = mysql_fetch_array($res); 37 38 $stemma = $dati['mappa']; 38 39 }elseif ($id_comune){ 39 $sql = "select * from ".$prefix."_ele_comuni where id_comune= ".$id_comune;40 $sql = "select * from ".$prefix."_ele_comuni where id_comune='$id_comune'"; 40 41 $res = mysql_query($sql,$dbi); 41 42 $dati = mysql_fetch_array($res); … … 49 50 if ($stemma=="" && is_readable('modules/Elezioni/images/vuoto.jpg')){ 50 51 $stemma = fread( fopen( 'modules/Elezioni/images/vuoto.jpg', 'r' ), filesize( 'modules/Elezioni/images/vuoto.jpg' ) );} 52 if(isset($pdf)) header('Content-type: application/pdf'); 51 53 echo $stemma; 52 54 ?>
Note:
See TracChangeset
for help on using the changeset viewer.