<html>
 
 
<head>
 
<title>Biometrics</title>
 
<style type="text/css">
 
body {
 
    background-color:#D0D0D0
 
}
 
h1 {
 
    font-family:times new roman;
 
    font-size:24pt;
 
    font-weight:bold;
 
    font-style:italic;
 
    color:#000080
 
}
 
</style>
 
</head>
 
 
<body>
 
 
<h1>Body biometrics</h1>
 
 
<?
 
require("class.biometrics.php");
 
$body = new biometrics();
 
$body->showallinfos();
 
?>
 
 
</body>
 
 
</html>
 
 |