hpdl
|
1
|
1
|
<?php
|
|
2
|
/*
|
mattice
|
151
|
3
|
$Id: install.php 1498 2007-03-29 14:04:50Z hpdl $
|
hpdl
|
1
|
4
|
|
|
5
|
osCommerce, Open Source E-Commerce Solutions
|
|
6
|
http://www.oscommerce.com
|
|
7
|
|
hpdl
|
459
|
8
|
Copyright (c) 2006 osCommerce
|
hpdl
|
1
|
9
|
|
hpdl
|
1498
|
10
|
This program is free software; you can redistribute it and/or modify
|
|
11
|
it under the terms of the GNU General Public License v2 (1991)
|
|
12
|
as published by the Free Software Foundation.
|
hpdl
|
1
|
13
|
*/
|
|
14
|
|
|
15
|
require('includes/application.php');
|
|
16
|
|
hpdl
|
465
|
17
|
$page_contents = 'install.php';
|
hpdl
|
1
|
18
|
|
hpdl
|
459
|
19
|
if (isset($_GET['step']) && is_numeric($_GET['step'])) {
|
hpdl
|
1
|
20
|
switch ($_GET['step']) {
|
hpdl
|
465
|
21
|
case '2':
|
|
22
|
$page_contents = 'install_2.php';
|
|
23
|
break;
|
|
24
|
|
hpdl
|
1
|
25
|
case '3':
|
hpdl
|
459
|
26
|
$page_contents = 'install_3.php';
|
hpdl
|
1
|
27
|
break;
|
hpdl
|
366
|
28
|
|
hpdl
|
1
|
29
|
case '4':
|
hpdl
|
459
|
30
|
$page_contents = 'install_4.php';
|
hpdl
|
1
|
31
|
break;
|
|
32
|
}
|
|
33
|
}
|
|
34
|
|
|
35
|
require('templates/main_page.php');
|
|
36
|
?>
|