
PK 
<?php $page = basename($_SERVER['SCRIPT_NAME']); ?>
<?php
include_once('include/common.php');
include_once('include/connection.php');
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" language="Javascript" src="js/global.js"></script>
<script type="text/javascript">var _siteRoot='index.html',_root='index.html';</script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<title>Adhoc Academy of Computers</title>
</head>
<body>
<table cellspacing="0" cellpadding="0" class="main">
<tr>
<td>
<?php include_once 'include/header.php'; ?>
</td>
</tr>
<tr>
<td>
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#017A37">
<tr>
<td width="28%" style="vertical-align:top;" height="180">
</td>
<td rowspan="2" bgcolor="#017A37" style="vertical-align:top;">
<?php include_once 'login/login.php'; ?>
</td>
<td width="28%" style="vertical-align:top;">
</td>
</tr>
<tr>
<td width="28%" style="vertical-align:top;">
<table width="100%" cellspacing="0" cellpadding="0">
<tr><td colspan="2"></td></tr>
<tr>
<td align="right"></td><td style="font-size:13px; text-align:left; color:#fff;"></td>
</tr></table>
</td>
<td width="28%" style="vertical-align:top;">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<?php include_once 'include/footer.php'; ?>
</td>
</tr>
</table>
</body>
</html>


PK 99