Example #1
0
<?php

require_once "../lib/Tracker.class.php";
require_once "../lib/Registry.class.php";
$tracker = new Tracker("192.168.1.10", "8550", "rtls_user", "welcome");
$tags = $tracker->listTags();
try {
    $registry = new Registry("localhost", "rtls_user", "welcome", "rtls");
} catch (CannotConnectException $e) {
    echo $e->getMessage();
} catch (Exception $e) {
    echo $e->getMessage();
}
$people = $registry->listPeople();
?>
<html>
<head>
<title>List of Tags</title>
<style type="text/CSS">
.tbl_header {
background-color: #4e99d6;
color: #FFFFFF;
font-weight: bold;
font-size: 10pt;
font-family: verdana, arial, sans-serif;
}

.tbl_footer {
background-color: #f4fcff;
}