PHP Classes

File: biominfos.php

Recommend this page to a friend!
  Classes of Pierre FAUQUE   Biometrics Class   biominfos.php   Download  
File: biominfos.php
Role: Example script
Content type: text/plain
Description: Is there a new version ?
Class: Biometrics Class
Compute several biometric indexes
Author: By
Last change:
Date: 16 years ago
Size: 395 bytes
 

Contents

Class file image Download
<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>