-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patholdpolls.phtml
61 lines (50 loc) · 1.33 KB
/
oldpolls.phtml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!-- This is for the HTML validator -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- The real code begins here -->
<?php
# Copyright (C) 2007 - Paul Zastoupil, Reinier Post, Marko Lindqvist
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
// include the php-code finder
ini_set("include_path",
ini_get("include_path") . ":" . $_SERVER["DOCUMENT_ROOT"]
);
include_once("php_code/settings.php");
include_once("php_code/php_code_find.php");
// includes for support routines
include_once(php_code_find("fcdb.php"));
include_once(php_code_find("polls.php"));
include_once(php_code_find("img.php"));
?>
<HTML>
<HEAD>
<TITLE>Old Freeciv Polls</TITLE>
<META HTTP-EQUIV=Content-Language CONTENT=en>
</HEAD>
<BODY BGCOLOR="#FFFAF0">
<CENTER>
<?
img_html("headers/oldpolls.gif", "Old Polls", NULL, NULL);
?>
</CENTER>
<BR>
<CENTER>
<?php polls_emit_old_polls(); ?>
</CENTER>
<BR>
<BR>
<HR>Return to <a href="/">the main page</A>
<HR>In case of technical problems, please contact
<?php echo $webmaster_html ?>.
<BR><BR>
<P ALIGN="center">
<?
img_html("hr.gif", "--------", NULL, NULL);
?>
</P>
<BR><BR>
</BODY>
</HTML>