
PK 
<?php
session_start();
include_once('../include/connection.php');
include_once('../include/common.php');
include_once('../include/session.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" />
<title>admin</title>
<link rel="stylesheet" type="text/css" href="../css/style.css" />
</head>
<body>
<table border="0" width="100%" align="center" cellpadding="0" cellspacing="0">
<!--header-->
<tr>
<td><?php include_once '../include/adminheader.php'; ?></td>
</tr>
<!--end header-->
<!--content-->
<tr height="220px">
<td>
<table border="0px" align="center" width="350px" class="tabler">
<tr>
<td align="center"><h1>Welcome to Admin Section</h1></td>
</tr>
</table>
</td>
</tr>
<!--end content-->
<!--footer-->
<tr>
<td align="center"><?php include_once '../include/adminfooter.php'; ?></td>
</tr>
<!--end footer-->
</table>
</body>
</html>


PK 99