| [ Index ] |
PHP Cross Reference of osCMax 2.0.4 |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 $Id: install.php 3 2006-05-27 04:59:07Z user $ 4 5 osCMax Power E-Commerce 6 http://oscdox.com 7 8 Copyright 2008 osCMax 9 10 Released under the GNU General Public License 11 */ 12 13 require ('includes/application.php'); 14 15 $page_contents = 'install.php'; 16 17 if (isset($HTTP_GET_VARS['step']) && is_numeric($HTTP_GET_VARS['step'])) { 18 switch ($HTTP_GET_VARS['step']) { 19 case '2': 20 $page_contents = 'install_2.php'; 21 break; 22 23 case '3': 24 $page_contents = 'install_3.php'; 25 break; 26 27 case '4': 28 $page_contents = 'install_4.php'; 29 break; 30 } 31 } 32 33 require ('templates/main_page.php'); 34 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Fri Jan 1 13:43:16 2010 | Cross-referenced by PHPXref 0.7 |