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 |
|
---|
9 | if (!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 |
|
---|
16 | if (isset($param['id_lista'])) $id_lista=intval($param['id_lista']); else $id_lista='';
|
---|
17 | if (isset($param['id_gruppo'])) $id_gruppo=intval($param['id_gruppo']); else $id_gruppo='';
|
---|
18 | if (isset($param['id_sede'])) $id_sede=intval($param['id_sede']); else $id_sede='';
|
---|
19 | if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune='';
|
---|
20 | if (isset($param['prefix'])) $prefix=$param['prefix'];
|
---|
21 |
|
---|
22 |
|
---|
23 | if ($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{
|
---|
44 | die();
|
---|
45 | }
|
---|
46 |
|
---|
47 |
|
---|
48 | // nessuno stemma immagine vuota
|
---|
49 | if ($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 |
|
---|
57 | echo $stemma;
|
---|
58 | ?>
|
---|