Revision 254, 1.3 KB
(checked in by exi, 14 years ago)
|
Merging 242:253 branch into dev
|
Line | |
---|
1 | <?php |
---|
2 | session_start(); |
---|
3 | |
---|
4 | if (!isset($_SESSION['state'])) |
---|
5 | { |
---|
6 | $_SESSION['state'] = 1; |
---|
7 | } |
---|
8 | elseif ($step = intval($_REQUEST['step'])) |
---|
9 | { |
---|
10 | $_SESSION['state'] = $step; |
---|
11 | } |
---|
12 | ?> |
---|
13 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
---|
14 | <html> |
---|
15 | <head> |
---|
16 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> |
---|
17 | <title>EVE Development Network Killboard Install Script</title> |
---|
18 | <link rel="stylesheet" type="text/css" href="common.css"> |
---|
19 | <link rel="stylesheet" type="text/css" href="style.css"> |
---|
20 | </head> |
---|
21 | <body bgcolor="#222222" style="height: 100%"> |
---|
22 | <table class="main-table" height="100%" align="center" bgcolor="#111111" border="0" cellspacing="1" style="height: 100%"> |
---|
23 | <tr style="height: 100%"> |
---|
24 | <td valign="top" height="100%" style="height: 100%"> |
---|
25 | <div id="header"> |
---|
26 | <img src="trinity.jpg" border="0"> |
---|
27 | </div> |
---|
28 | <div id="page-title">Install Step <?php echo $_SESSION['state']; ?></div> |
---|
29 | <table cellpadding="0" cellspacing="0" width="100%" border="0"> |
---|
30 | <tr><td valign="top"><div id="content"> |
---|
31 | <?php |
---|
32 | include('install_step'.$_SESSION['state'].'.php'); |
---|
33 | ?> |
---|
34 | </div></td> |
---|
35 | </tr></table> |
---|
36 | <div class="counter"><font style="font-size: 9px;">©2006-2007 <a href="http://www.eve-dev.net/" target="_blank">EVE Development Network</a></font></div> |
---|
37 | </td></tr></table> |
---|
38 | </body> |
---|
39 | </html> |
---|