source: trunk/client/temi/yellowblu/index.php@ 2

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

importo il progetto

File size: 1.9 KB
Line 
1<?php
2include_once("modules/Elezioni/funzioni.php");
3include_once("temi/inc/button.php");
4
5
6########## no blocco x grafici e risultati
7if($blocco!=1 || $param['op']=="graf_gruppo" || $param['op']=="gruppo_circo" || $param['op']=="gruppo_sezione"
8|| $param['op']=="lista_circo" || $param['op']=="lista_sezione" || $param['op']=="candidato_circo" || $param['op']=="candidato_sezione"
9)$blocco=''; else $blocco=1;
10
11$nometema=$tema;
12####################################
13function testata(){
14####################################
15
16global $nometema,$file,$bgcolor,$sitename,$dbi,$prefix,$blocco,$lang,$siteistat;
17if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune=$siteistat;
18
19$res = mysql_query("SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi);
20 list($descr_com) = mysql_fetch_row($res);
21
22
23// logo
24echo '
25<div id="header">
26 <div id="logo">
27 <h1>';
28 echo "$descr_com";
29echo '</a></h1>
30 <b>consultazioni elettorali on line </b><br /> <a href="http://www.eleonline.it"> <i>by l.apolito e r.gigli</i></a>
31 <br/><br/><br/>
32 <div id="search">&nbsp;';
33 language();
34 flash();
35 noblocco();
36echo ' </div>
37
38 </div>
39</div>
40
41';
42
43// menu
44echo '<div id="menu"><br/>';
45 if ($file=="index") menu();
46
47echo "</div>";
48
49echo '
50 <div id="page">';
51 echo "<table cellpadding=\"0\" cellspacing=\"0\"><tr>";
52
53
54 $check=check_block("dx"); // check exist box
55
56 if ($blocco=='1' && $check!=0){
57 echo "<td valign=\"top\" class=\"sidebar\">";
58 block("dx");
59 echo "</td><td>&nbsp;&nbsp;</td><td valign=\"top\">";
60
61 }else {
62 echo "<td valign=\"top\">";
63 }
64
65}
66function piede(){
67 global $blocco;
68 $check=check_block("sx"); // check exist box
69 if ($blocco=='1' && $check!=0){
70 echo "</td><td>&nbsp;&nbsp;</td><td valign=\"top\" class=\"sidebar\">";
71 block("sx");
72
73 }
74 echo "</td></tr></table>";
75 echo "</div>"; #container
76
77}
78
79
80?>
Note: See TracBrowser for help on using the repository browser.