
PK 
<?php
session_start();
require_once 'common/common.php';
require_once 'common/secure.php';
include "head.php";
if($vkey=='123456789')
{
$_SESSION['install'] = true;
header('Location: demoinstall.php');
exit;
}
elseif($vkey=='jamesbond')
{
$_SESSION['install'] = true;
header('Location: setup.php');
exit;
}
else
{
?>
<!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>Edusoft</title>
<link type="text/css" rel="stylesheet" href="../css/edusoft.css" title="edusoft" media="all"/>
</head>
<body>
<br />
<table id="content">
<tr>
<td align="center" class="blue">
<center><h1>ERROR</h1><font color=red>Licience Key provided by you failed.</font>
<br><a href=install.php><img src="../img/load.gif" border="0"><br>click here to try again</a><br>[ please provide a Valid Licience Key. ]</center>
<br>
</td>
</tr>
<tr>
<td width="100%" bgcolor="#FFFFFF" colspan="5"><font size="2" color="#000000">All Rights
reserved @ Edusoft Educational Management Systems</font></td>
</tr>
</table>
</body>
</html>
<?php
}
?>


PK 99