source: trunk/client/modules/Elezioni/foto.php@ 2

Last change on this file since 2 was 2, checked in by root, 15 years ago

importo il progetto

File size: 2.0 KB
Line 
1<?php
2/************************************************************************/
3/* Eleonline - Raccolta e diffusione dei dati elettorali */
4/* by Luciano Apolito & Roberto Gigli */
5/* http://www.eleonline.it */
6/* info@eleonline.it luciano@aniene.net rgigli@libero.it */
7/************************************************************************/
8
9if (!defined('MODULE_FILE')) {
10 die ("You can't access this file dirrectly...");
11}
12
13
14$param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
15
16if (isset($param['id_lista'])) $id_lista=intval($param['id_lista']); else $id_lista='';
17if (isset($param['id_gruppo'])) $id_gruppo=intval($param['id_gruppo']); else $id_gruppo='';
18if (isset($param['id_sede'])) $id_sede=intval($param['id_sede']); else $id_sede='';
19if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune='';
20if (isset($param['prefix'])) $prefix=$param['prefix'];
21
22
23if ($id_lista){
24 $sql = "select * from ".$prefix."_ele_lista where id_lista=".$id_lista;
25 $res = mysql_query($sql,$dbi);
26 $dati = mysql_fetch_array($res);
27 $stemma = $dati['stemma'];
28}elseif ($id_gruppo){
29 $sql = "select * from ".$prefix."_ele_gruppo where id_gruppo=".$id_gruppo;
30 $res = mysql_query($sql,$dbi);
31 $dati = mysql_fetch_array($res);
32 $stemma = $dati['stemma'];
33}elseif ($id_sede){
34 $sql = "select * from ".$prefix."_ele_sede where id_sede=".$id_sede;
35 $res = mysql_query($sql,$dbi);
36 $dati = mysql_fetch_array($res);
37 $stemma = $dati['mappa'];
38}elseif ($id_comune){
39 $sql = "select * from ".$prefix."_ele_comuni where id_comune=".$id_comune;
40 $res = mysql_query($sql,$dbi);
41 $dati = mysql_fetch_array($res);
42 $stemma = $dati['stemma']; #die("qui: $sql $stemma");
43}else{
44die();
45}
46
47
48// nessuno stemma immagine vuota
49if ($stemma==""){
50
51$sql = "select stemma from ".$prefix."_ele_conf where id_com='0'";
52$res = mysql_query($sql,$dbi);
53$dati = mysql_fetch_array($res);
54$stemma = $dati['stemma'];
55}
56
57echo $stemma;
58?>
Note: See TracBrowser for help on using the repository browser.