|
Revision 50, 1.6 kB
(checked in by luciano, 2 years ago)
|
--
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 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"); |
|---|
| 29 |
|
|---|
| 30 |
echo "\n\n\n</head>\n"; |
|---|
| 31 |
|
|---|
| 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 |
|
|---|