// Access Log
// May 21, 2007
// Jason Powers
$log = "/var/www/html/access.html";
$COLOR="BLACK";
// create timestamp
$today = date("F j, Y, g:i a");
// get user IP address
$userip = $_SERVER['REMOTE_ADDR'];
// checking for specific IP address.
$fqdn = gethostbyaddr($userip) ;
$data = " $today -- $AREA -- $fqdn ($userip)\n";
$file_handle = fopen($log,"a") or die("Cannot open file");
fwrite($file_handle, $data) or die ("Cannot write to file");
fclose($file_handle);
?>
This program is used to track blood pressure readings from a user's handheld monitor. Features include graphical
representation of blood pressure history, reporting and numerical analysis of monitor readings over time.
Features
* Tracks blood pressure readings from your home monitor.
* Generates dynamic reports to take to your doctor.
* Provides alerts to inform you of when it is time for a reading.
* Calculates morning, afternoon and total averages of your blood pressure.
Utilization of this program should be for informational purposes only and does not constitute any form of advice or
recommendation. The information is not intended to be relied upon by you in making any specific medical or other decision.
Appropriate independent medical advice should be obtained before making any such decision. read more...