setHTMLTitle("Online Anzeige");
	$HTML->importSeitenInhalt("pages/HTML/online-anzeige.html");
    $table = '
| Benutzername | Region | 
|---|
%%ENTRY%%
';
    
    $statement = $RUNTIME['PDO']->prepare("SELECT RegionID,UserID FROM Presence ORDER BY RegionID ASC");
    $statement->execute(); 
    while($row = $statement->fetch()) 
    {
        if($row['RegionID'] != "00000000-0000-0000-0000-000000000000")
        {
            $entry = '| '.htmlspecialchars(trim($RUNTIME['OPENSIM']->getUserName($row['UserID']))).' | '.htmlspecialchars($RUNTIME['OPENSIM']->getRegionName($row['RegionID'])).' | 
';
            $table = str_replace("%%ENTRY%%", $entry."%%ENTRY%%", $table);
        }
    }
    $table = str_replace("%%ENTRY%%", "", $table);
    $HTML->ReplaceSeitenInhalt("%%ONLINE-LIST%%", $table);
    $HTML->build();
    echo $HTML->ausgabe();
?>