<html>
<head>
<title> Myphonebook 1.0.1 </title>
</head>
<body>
<div align="center">
<font size="4"><b>
My Phonebook 1.0.1
</b></font></div>
<br>
</body>
</html>
<?php
include "data/includes.php";
if ($user) {
sort($user);
print"<html>";
print"<head>";
print"<style type='text/css'>";
print" td { border: 1px; border-color:black; border-style:solid; }";
print"</style>";
print"</head>";
print"<body>";
print"<a href='index.php' target='_parent'><img src='images/home.gif' border='0' style='margin-left:150px;'></a><br><br>";
print"<table border=0 align=center>";
print"<tr><td><b>Last Name:</td><td><b>First Name:</td><td><b>Company:</td><td><b>Phone:</td><td><b>Mobile:</td><td><b>Fax:</td><td><b>Email:</td><td><b>Details:</td><td><b>Modify:</td><td><b>Delete:</td></tr>";
$show = count($user);
for ($i=0; $i < $show; $i++) {
print $user[$i];
}
print"</table>";
print"</body>";
print"</html>";
}
?>
<html>
<head></head>
<body>
<br>
<iframe Src="entry.php" height="600" width="750" align="center" name="iframe" frameborder="0"></iframe>
</body>
</html>