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:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
|
<?php
// +---------------------------------------------+
// | Copyright © 2004 – 2005 mnProjects |
// | http://www.mnprojects.com |
// | DreamStats System by Miguel Nunes |
// +---------------------------------------------+
define('in_dreamstats', true);
define('in_dsinstall', true);
include("./installfunc.php");
include("../includes/ip_vers.php");
include("../includes/core.php");
?>
<html>
<head>
<title>DreamStats <?php echo $vversion ?> Installation</title>
<style type="text/css">
body { background-color: white; color: gray; font-family: arial; }
.content { background-color: white; font-size: 11px; }
.steps { background-color: #efefef; border: 1px solid #c1c1c1; }
.currentstep { background-color: #c1c1c1; border: 1px solid #c1c1c1; }
</style>
</head>
<body>
<p><i><b>DreamStats <?php echo $vversion ?> Installation</b></i></p>
<hr color="#808080" size="1">
<form name="form" action="./sqlsubmit.php">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="148" valign="top">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="steps"><font size="2">1. License</font></td>
</tr>
<tr>
<td class="currentstep"><font size="2">2. Configuration</font></td>
</tr>
<tr>
<td class="steps"><font size="2">3. Installation</font></td>
</tr>
<tr>
<td class="steps"><font size="2">4. Finished</font></td>
</tr>
</table>
</td>
<td width="64"> </td>
<td valign="top">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="currentstep"> </td>
</tr>
<tr>
<td class="steps"><font size="2">Create a database.<br>Now open config.php with any text editor and enter your database information.</font></td>
</tr>
</table>
<br><input type="submit" value="Next »"></td>
</tr>
</table>
</form>
<hr color="#808080" size="1">
<p><font size="2">DreamStats © 2004 - 2005 mnProjects</font></p>
</body>
</html>
|