index.php
962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
set_include_path('.' . PATH_SEPARATOR . '/vhost/zend/library/' . PATH_SEPARATOR . get_include_path());
include("../include/init.php");
include('../include/form.class.php') ;
include('../include/functions.php');
include('../include/imagemap.class.php');
include('../include/menu.class.php');
$menu = new div_menu;
$menu->add_item('Etusivu', 'index.php');
$menu->add_item('Statistics', 'index.php?pid=statistics');
$navi = $menu->menu_out();
$liput1t4 = "30";
$liput5t8 = "28";
$liput9t = "26";
$liputvis = "10";
$liputpro = "40";
$tilinumero = "OP 570081-20127464";
$saaja = "Verkkopeliyhdistys Insomnia ry";
$erapaiva = "15.10.2009";
# Page handling
switch(addslashes($_GET['pid'])) {
case "front":
include("showall.php");
break;
case "statistics":
include("statistics.php");
break;
default:
include("showall.php");
break;
}
include("template.php");
?>