<?php
/**
* The installation file
*
* @author Roosevelt Purification
* @package RGameScriptPro1.1
*/
/*===========================================================================*\
|| ######################################################################### ||
|| # RGameScript Pro Version 1.1
|| # --------------------------------------------------------------------- # ||
|| # Copyright ©2005-2006 Roosevelt Purification. All Rights Reserved. # ||
|| # RGameScript Pro is a free software released under GNU/GPL License # ||
|| # Website URL: http://www.photoshopcity.com/ # ||
|| ######################################################################### ||
\*===========================================================================*/
error_reporting(E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR);
require("rincludes/class_init.php");
$dir = "radmincp/";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>RGameScript Pro Installation</title>
<!-- The design is copyrighted to Roosevelt Purification at www.photoshopcity.com. -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
body{
color: #2E6983;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
background-color: #BBDAE7;
}
a:link {
color: #1F4556;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #1F4556;
}
a:hover {
text-decoration: underline;
color: #0066FF;
}
a:active {
text-decoration: none;
color: #1F4556;
}
.left {
background-image: url(radmincp/rimages/install_02.gif);
}
.right {
background-image: url(radmincp/rimages/install_04.gif);
}
-->
</style>
<?php $roosevelt->CommonCss("radmincp/"); ?>
<script type="text/javascript" src="radmincp/roosevelt.js">
</script>
</head>
<body>
<table id="Table_01" width="600" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td colspan="3">
<img id="install_01" src="radmincp/rimages/install_01.gif" width="600" height="48" alt="" /></td>
</tr>
<tr>
<td width="41" class="left"> </td>
<td valign="top" bgcolor="#FFFFFF">
<?php
switch ($_GET['id'])
{
case 'dbinfo':
$rinstall->GetDbInfo();
break;
case 'mt':
$rinstall->MakeTables();
break;
default:
$rinstall->LicenseAgreement();
break;
}
?>
</td>
<td width="37" class="right"> </td>
</tr>
<tr>
<td colspan="3">
<img id="install_05" src="radmincp/rimages/install_05.gif" width="600" height="44" alt="" /></td>
</tr>
</table>
</body>
</html>