root/trunk/client/header.php

Revision 50, 1.6 kB (checked in by luciano, 2 years ago)

--

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 /* ultima modfifica: aggiunta rotazione 18 marzo 2009 */
9
10 if (stristr($PHP_SELF,"header.php")) {
11     Header("Location: index.php");
12     die();
13 }
14
15 include("temi/$tema/index.php");
16 include("modules/Elezioni/language/lang-$lang.php");
17
18
19 function head() {
20     global $csv,$tema,$tour;
21     echo '
22     <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
23     <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';
24     echo "<head>\n";
25     echo "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />";
26     echo "<title>Eleonline - Elezioni on line</title>\n";
27     echo "<link rel=\"stylesheet\" href=\"temi/$tema/style.css\" type=\"text/css\" />\n\n\n";
28     include("inc/javascript.php"); # rotazione (18 marzo 2009) tema tour
29
30     echo "\n\n\n</head>\n";
31     # rotazione per tema tour
32     if (isset($_SESSION['ruota'])){$csv=1; echo "<body onload=\"loadpage()\"";}
33     else echo "<body";
34     if (!$csv) echo " style=\"background-image: url(temi/$tema/images/sfondo.jpg); background-repeat:repeat-x;\"";
35     echo " >\n";
36     include("inc/authors.php");
37
38     include_once("modules/Elezioni/funzioni.php");
39     if (!$csv)testata();
40
41   }
42
43 head();
44
45 ?>
46
Note: See TracBrowser for help on using the browser.