<?php
require_once '../library/config.php';
require_once '../library/functions.php';
$page = (isset($_GET['page']) && $_GET['page'] != '') ? $_GET['page'] : 'display_booksu';
?>
<html>
<head>
<title>Book store</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<p> </p>
<table width="750" border="0" align="center" cellpadding="2" cellspacing="1" class="table_main">
<tr>
<td>
<?php
include $page. '.php';
?>
</td>
</tr>
</table>
</body>
</html>